Skip to content

Commit 90e961f

Browse files
committed
tweaked gitignore
1 parent ade2e67 commit 90e961f

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/cmake.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,13 +89,18 @@ jobs:
8989
9090
9191
92-
- name: Release
92+
- name: ReleaseWindows
9393
uses: softprops/action-gh-release@v1
9494
if: |
9595
startsWith(github.ref, 'refs/tags/') && ${{ runner.os == 'Windows' }}
9696
with:
9797
files: ${{github.workspace}}\build\ChordFilter_artefacts\Release\${{ runner.os}}.zip
98-
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
99104

100105

101106
# - if: ${{ runner.os == 'Windows' }}

0 commit comments

Comments
 (0)