File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -87,12 +87,11 @@ jobs:
8787 shell : ' bash {0}'
8888 run : |
8989 iscc installer/install.iss //DMyAppVersion=${VERSION:-2.0.0}
90- sha256sum .build/QMK_MSYS.exe > .build/QMK_MSYS.exe.sha256
9190
92- - uses : actions/upload-artifact@v6
91+ - uses : actions/upload-artifact@v7
9392 with :
94- name : installer
9593 path : .build/QMK_MSYS.*
94+ archive : false
9695 include-hidden-files : true
9796
9897 test :
@@ -101,9 +100,7 @@ jobs:
101100 needs : [build]
102101
103102 steps :
104- - uses : actions/download-artifact@v7
105- with :
106- name : installer
103+ - uses : actions/download-artifact@v8
107104
108105 - name : Run Install
109106 run : |
@@ -124,11 +121,15 @@ jobs:
124121 if : github.event.release.tag_name
125122
126123 steps :
127- - uses : actions/download-artifact@v7
124+ - uses : actions/download-artifact@v8
128125 with :
129- name : installer
130126 path : .build
131127
128+ - name : Create Hash
129+ shell : ' bash {0}'
130+ run : |
131+ sha256sum .build/QMK_WSL.exe > .build/QMK_WSL.exe.sha256
132+
132133 - uses : softprops/action-gh-release@v2
133134 env :
134135 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
@@ -149,11 +150,15 @@ jobs:
149150 with :
150151 fetch-tags : true
151152
152- - uses : actions/download-artifact@v7
153+ - uses : actions/download-artifact@v8
153154 with :
154- name : installer
155155 path : .build
156156
157+ - name : Create Hash
158+ shell : ' bash {0}'
159+ run : |
160+ sha256sum .build/QMK_WSL.exe > .build/QMK_WSL.exe.sha256
161+
157162 - name : Delete release
158163 run : gh release delete beta --cleanup-tag || true
159164 env :
You can’t perform that action at this time.
0 commit comments