Merge pull request #356 from koron/improve-workflows #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release firmwares | |
on: | |
push: | |
tags: | |
- 'v[0-9]+.[0-9]+.[0-9]+*' | |
jobs: | |
build: | |
name: Build firmwares | |
uses: ./.github/workflows/build.yml | |
deploy: | |
name: Deploy firmwares | |
runs-on: ubuntu-latest | |
needs: | |
- build | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
- name: Archive Keyball39 firmwares | |
uses: ./.github/actions/release-archive | |
with: { name: keyball39 } | |
- name: Archive Keyball44 firmwares | |
uses: ./.github/actions/release-archive | |
with: { name: keyball44 } | |
- name: Archive Keyball61 firmwares | |
uses: ./.github/actions/release-archive | |
with: { name: keyball61 } | |
- name: Archive Keyball46 firmwares | |
uses: ./.github/actions/release-archive | |
with: { name: keyball46 } | |
- name: Archive One47 firmwares | |
uses: ./.github/actions/release-archive | |
with: { name: one47 } | |
- name: List archives | |
run: ls -l *.zip | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
draft: true | |
prerelease: ${{ contains(github.ref_name, '-alpha.') || contains(github.ref_name, '-beta.') }} | |
files: | | |
*.zip | |
fail_on_unmatched_files: true | |
generate_release_notes: true | |
append_body: true |