We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2b086c commit ca3d774Copy full SHA for ca3d774
1 file changed
.github/workflows/release.yml
@@ -5,6 +5,9 @@ on:
5
tags:
6
- "v*"
7
8
+permissions:
9
+ contents: write
10
+
11
jobs:
12
release:
13
runs-on: ${{ matrix.os }}
@@ -60,6 +63,14 @@ jobs:
60
63
powershell -Command "Compress-Archive -Path dist\\reglinux-fetch.exe -DestinationPath reglinux-fetch-windows-${{ github.ref_name }}.zip"
61
64
powershell -Command "Compress-Archive -Path dist\\reglinux-burner.exe -DestinationPath reglinux-burner-windows-${{ github.ref_name }}.zip"
62
65
66
+ - name: List artifacts (unix)
67
+ if: runner.os != 'Windows'
68
+ run: ls -la *.zip
69
70
+ - name: List artifacts (windows)
71
+ if: runner.os == 'Windows'
72
+ run: dir *.zip
73
74
- name: Upload reglinux-fetch asset (linux)
75
if: runner.os == 'Linux'
76
uses: softprops/action-gh-release@v2
0 commit comments