Skip to content

Commit

Permalink
Add build-all workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Yan Zarytovsky <[email protected]>
  • Loading branch information
asviel committed Mar 13, 2024
1 parent 1260a65 commit ba0bf3d
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/build-all.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: build

on: push

permissions:
contents: write

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Setup Task
uses: arduino/setup-task@v2
- name: Build all
run: task build:dist:all
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
README.md
LICENSE
dist/**/*

0 comments on commit ba0bf3d

Please sign in to comment.