We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4c1e38 commit 4500925Copy full SHA for 4500925
.github/workflows/release.yml
@@ -22,12 +22,11 @@ jobs:
22
- name: Archive
23
run: |
24
make -e archive
25
- echo "archive=$NORGANIC_ARCHIVE" >> $GITHUB_ENV
26
env:
27
NORGANIC_ARCHIVE: norganic-${{matrix.os}}-${{matrix.arch}}${{ matrix.os != 'windows-latest' && '.tar.gz' || '.zip' }}
28
- name: Upload release
29
uses: softprops/action-gh-release@v1
30
with:
31
- files: ${{ env.archive }}
+ files: norganic-${{matrix.os}}-${{matrix.arch}}${{ matrix.os != 'windows-latest' && '.tar.gz' || '.zip' }}
32
tag_name: ${{github.event.release.tag_name}}
33
name: ${{github.event.release.name}}
0 commit comments