We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3925793 commit fb1769bCopy full SHA for fb1769b
1 file changed
.github/workflows/release.yaml
@@ -27,14 +27,14 @@ jobs:
27
28
- name: Package artifacts
29
run: |
30
- TAG=${{ github.ref_name }}
31
- tar -czf observer-${{ matrix.goarch }}-$TAG.tar.gz observer-${{ matrix.goarch }}
+ echo "Packaging artifacts for ${{ matrix.goarch }}-{{ github.ref_name }}"
+ gzip -c observer-${{ matrix.goarch }} > observer-${{ matrix.goarch }}-{{ github.ref_name }}.gz
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 }}.gz
38
release:
39
runs-on: ubuntu-latest
40
needs: build
0 commit comments