We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7361f0 commit 96c3ebbCopy full SHA for 96c3ebb
.github/workflows/windows-build.yml
@@ -9,7 +9,7 @@ on:
9
types: [ published ]
10
11
env:
12
- artifacts: >
+ artifacts: |
13
me7sum.exe
14
ME7Check.exe
15
README.md
@@ -35,8 +35,10 @@ jobs:
35
path: ${{ env.artifacts }}
36
- name: Upload windows artifact to release
37
if: github.event_name == 'release' && github.event.action == 'published'
38
+ shell: pwsh
39
run: |
- 7z a -tzip me7sum-${{ github.ref_name }}-win.zip ${{ env.artifacts }}
40
+ $env:artifacts > artifacts.txt
41
+ cmd --% /c 7z a -tzip me7sum-${{ github.ref_name }}-win.zip @artifacts.txt
42
gh release upload --clobber ${{ github.ref_name }} me7sum-${{ github.ref_name }}-win.zip
43
44
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments