Skip to content

Cleaning up release flow #10

Cleaning up release flow

Cleaning up release flow #10

Workflow file for this run

name: release-workflow
on:
push:
tags:
- "v*.*.*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup environment
uses: ./.github/actions/setup
- name: Build
uses: ./.github/actions/build
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
build/*.elf
build/*.bin
LICENSE