mirror of
https://github.com/jhbruhn/butns.git
synced 2025-07-02 01:18:50 +00:00
42 lines
No EOL
902 B
YAML
42 lines
No EOL
902 B
YAML
name: Publish
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
jobs:
|
|
build:
|
|
uses: ./.github/workflows/build.yml
|
|
publish:
|
|
name: Publish binaries
|
|
runs-on: ubuntu-latest
|
|
needs: [build]
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- name: Download firmware artifact
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: firmware
|
|
- name: Download case artifact
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: case
|
|
- name: Download buttons artifact
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: buttons
|
|
- name: Download board artifact
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: board
|
|
- name: Release
|
|
uses: softprops/action-gh-release@v2
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
with:
|
|
files: |
|
|
*.uf2
|
|
*.stl
|
|
*.csv
|
|
JLCPCB/*.zip |