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 ade2e67 commit 90e961fCopy full SHA for 90e961f
.github/workflows/cmake.yml
@@ -89,13 +89,18 @@ jobs:
89
90
91
92
- - name: Release
+ - name: ReleaseWindows
93
uses: softprops/action-gh-release@v1
94
if: |
95
startsWith(github.ref, 'refs/tags/') && ${{ runner.os == 'Windows' }}
96
with:
97
files: ${{github.workspace}}\build\ChordFilter_artefacts\Release\${{ runner.os}}.zip
98
-
+ - name: ReleaseUNIX
99
+ uses: softprops/action-gh-release@v1
100
+ if: |
101
+ startsWith(github.ref, 'refs/tags/') && ${{ runner.os != 'Windows' }}
102
+ with:
103
+ files: ${{github.workspace}}build/ChordFilter_artefacts/Release/${{ runner.os}}.zip
104
105
106
# - if: ${{ runner.os == 'Windows' }}
0 commit comments