We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79cd6f4 commit 9a8d971Copy full SHA for 9a8d971
1 file changed
.github/workflows/release.yml
@@ -64,14 +64,11 @@ jobs:
64
tar -czf ../../zigchat-${{ runner.os }}.tar.gz *
65
fi
66
67
- - name: Attach to GitHub Release (Windows)
+ - name: Upload Release Assets
68
uses: softprops/action-gh-release@v2
69
- if: startsWith(github.ref, 'refs/tags/') && startsWith(matrix.os, 'windows')
+ if: startsWith(github.ref, 'refs/tags/')
70
with:
71
- files: zigchat-${{ runner.os }}.zip
72
-
73
- - name: Attach to GitHub Release (Unix)
74
- uses: softprops/action-gh-release@v2
75
- if: startsWith(github.ref, 'refs/tags/') && !startsWith(matrix.os, 'windows')
76
- with:
77
- files: zigchat-${{ runner.os }}.tar.gz
+ files: |
+ zigchat-*.zip
+ zigchat-*.tar.gz
+ fail_on_unmatched_files: false
0 commit comments