We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c19ef9 commit 01b46ddCopy full SHA for 01b46dd
.gitlab/prepare-oci-package.sh
@@ -1,6 +1,11 @@
1
#!/usr/bin/env bash
2
set -euo pipefail
3
4
+if [ "$OS" != "linux" ]; then
5
+ echo "Only linux packages are supported. Exiting"
6
+ exit 0
7
+fi
8
+
9
arch=${ARCH:-$(uname -m)}
10
if [[ "$arch" == "arm64" ]]; then
11
arch="aarch64"
0 commit comments