We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7361f0 commit d2ce880Copy full SHA for d2ce880
.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
@@ -36,7 +36,8 @@ jobs:
36
- name: Upload windows artifact to release
37
if: github.event_name == 'release' && github.event.action == 'published'
38
run: |
39
- 7z a -tzip me7sum-${{ github.ref_name }}-win.zip ${{ env.artifacts }}
+ $env:artifacts > artifacts.txt
40
+ cmd --% /c 7z a -tzip me7sum-${{ github.ref_name }}-win.zip @artifacts.txt
41
gh release upload --clobber ${{ github.ref_name }} me7sum-${{ github.ref_name }}-win.zip
42
43
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments