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 9b56090 commit de87608Copy full SHA for de87608
.github/workflows/release.yaml
@@ -33,10 +33,19 @@ jobs:
33
run: |
34
strip "target/${{ matrix.job.target }}/release/stackmuncher"
35
36
+ - name: Package
37
+ shell: bash
38
+ run: |
39
+ if [ "${{ matrix.job.os }}" = "windows-latest" ]; then
40
+ cp "target/${{ matrix.job.target }}/release/stackmuncher.exe" stackmuncher-${{ matrix.job.target }}.exe
41
+ else
42
+ cp "target/${{ matrix.job.target }}/release/stackmuncher" stackmuncher-${{ matrix.job.target }}
43
+ fi
44
+
45
- name: Publish
46
uses: softprops/action-gh-release@v1
47
with:
- files: 'stackmuncher*'
48
+ files: 'stackmuncher-*'
49
draft: true
50
env:
51
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments