We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 787b281 commit e1ca1ceCopy full SHA for e1ca1ce
.github/workflows/release-linux.yml
@@ -27,9 +27,10 @@ jobs:
27
echo "creating binary archieves..."
28
export SLANG_OS_NAME=linux
29
export SLANG_ARCH_NAME=`uname -p`
30
- export TAG_NAME=${{ github.ref }}
+ export TAG_NAME=`git describe --tags`
31
export SLANG_TAG=${TAG_NAME#v}
32
echo "tag:$TAG_NAME"
33
+ echo "slang-tag:$SLANG_TAG"
34
export SLANG_BINARY_ARCHIVE=slang-${SLANG_TAG}-${SLANG_OS_NAME}-${SLANG_ARCH_NAME}.zip
35
export SLANG_BINARY_ARCHIVE_TAR=slang-${SLANG_TAG}-${SLANG_OS_NAME}-${SLANG_ARCH_NAME}.tar.gz
36
echo "creating zip"
0 commit comments