Skip to content

Commit ce4974f

Browse files
authored
Bump upload/download artifact (#250)
1 parent a20c235 commit ce4974f

1 file changed

Lines changed: 15 additions & 10 deletions

File tree

.github/workflows/build.yml

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)