Add pi_volume_attach as free resource (#213) #11
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: Upload master prerelease | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build: | |
name: Upload master prerelease | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: Build project | |
run: | | |
make release | |
- name: Release | |
run: go run tools/release/main.go | |
env: | |
RELEASE_ID: "preview" | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Remove build assets | |
run: rm -rf build |