diff --git a/.github/workflows/build-all.yaml b/.github/workflows/build-all.yaml new file mode 100644 index 0000000..4804437 --- /dev/null +++ b/.github/workflows/build-all.yaml @@ -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/**/*