We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05ec337 commit b2fc866Copy full SHA for b2fc866
.github/workflows/release.yml
@@ -2,7 +2,6 @@ name: Release
2
3
on:
4
push:
5
- pull_request:
6
release:
7
types: [published]
8
@@ -34,7 +33,8 @@ jobs:
34
33
id: filenames
35
run: |
36
tag=${GITHUB_REF#refs/tags/}
37
- tag=${tag#refs/heads/}
+ if [[ "$tag" =~ refs/ ]]; then tag="NoTag"; fi
+ echo "Using tag: $tag"
38
echo "::set-output name=foldername::rttrUtils_$tag"
39
echo "::set-output name=filename::rttrUtils-${{runner.os}}-${tag}.tar.gz"
40
0 commit comments