We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48a2da5 commit 3925793Copy full SHA for 3925793
1 file changed
.github/workflows/release.yaml
@@ -27,14 +27,14 @@ jobs:
27
28
- name: Package artifacts
29
run: |
30
- TAG=${{GITHUB_REF_NAME}}
+ TAG=${{ github.ref_name }}
31
tar -czf observer-${{ matrix.goarch }}-$TAG.tar.gz observer-${{ matrix.goarch }}
32
33
- name: Upload artifacts
34
uses: actions/upload-artifact@v4
35
with:
36
name: observer-${{ matrix.goarch }}
37
- path: observer-${{ matrix.goarch }}-${{GITHUB_REF_NAME}}.tar.gz
+ path: observer-${{ matrix.goarch }}-${{ github.ref_name }}.tar.gz
38
release:
39
runs-on: ubuntu-latest
40
needs: build
@@ -48,5 +48,5 @@ jobs:
48
- name: Release
49
uses: softprops/action-gh-release@v2
50
51
- name: observer-${{GITHUB_REF_NAME}}
+ name: observer-${{ github.ref_name }}
52
files: ./artifacts/**/*.tar.gz
0 commit comments