Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 15 additions & 10 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,12 +87,11 @@ jobs:
shell: 'bash {0}'
run: |
iscc installer/install.iss //DMyAppVersion=${VERSION:-2.0.0}
sha256sum .build/QMK_MSYS.exe > .build/QMK_MSYS.exe.sha256

- uses: actions/upload-artifact@v6
- uses: actions/upload-artifact@v7
with:
name: installer
path: .build/QMK_MSYS.*
archive: false
include-hidden-files: true

test:
Expand All @@ -101,9 +100,7 @@ jobs:
needs: [build]

steps:
- uses: actions/download-artifact@v7
with:
name: installer
- uses: actions/download-artifact@v8

- name: Run Install
run: |
Expand All @@ -124,11 +121,15 @@ jobs:
if: github.event.release.tag_name

steps:
- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
name: installer
path: .build

- name: Create Hash
shell: 'bash {0}'
run: |
sha256sum .build/QMK_WSL.exe > .build/QMK_WSL.exe.sha256

- uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -149,11 +150,15 @@ jobs:
with:
fetch-tags: true

- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8
with:
name: installer
path: .build

- name: Create Hash
shell: 'bash {0}'
run: |
sha256sum .build/QMK_WSL.exe > .build/QMK_WSL.exe.sha256

- name: Delete release
run: gh release delete beta --cleanup-tag || true
env:
Expand Down