We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 72b3bbc + 1247ac2 commit 01ef338Copy full SHA for 01ef338
.gitlab/prepare-oci-package.sh
@@ -1,6 +1,11 @@
1
#!/bin/bash
2
set -eo pipefail
3
4
+if [ "$OS" != "linux" ]; then
5
+ echo "Only linux packages are supported. Exiting"
6
+ exit 0
7
+fi
8
+
9
if [ -n "$CI_COMMIT_TAG" ] && [ -z "$PYTHON_PACKAGE_VERSION" ]; then
10
PYTHON_PACKAGE_VERSION=${CI_COMMIT_TAG##v}
11
fi
0 commit comments