We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6a317e commit 96fc685Copy full SHA for 96fc685
.github/workflows/cicd.yml
@@ -61,7 +61,7 @@ jobs:
61
run: |
62
./build.sh --builddir ~/package-output/ --static build
63
ver=$(cat .version)
64
- if [ "$ver" != "${{github.ref_name}}" ]; then echo ".version does not match the Git tag"; exit 1; fi
+ if [ "v$ver" != "${{github.ref_name}}" ]; then echo ".version does not match the Git tag"; exit 1; fi
65
mv ~/package-output/ ~/maddy-$ver-x86_64-linux-musl
66
cd ~
67
tar c ./maddy-$ver-x86_64-linux-musl | zstd > ~/maddy-x86_64-linux-musl.tar.zst
0 commit comments