bump SDK to v0.1.295 — edge cancellation on removal #47
Workflow file for this run
This file contains hidden or 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: Build & publish module to the Tiny Systems | |
| on: | |
| push: | |
| tags: | |
| - 'v[0-9]+.[0-9]+.[0-9]+' | |
| jobs: | |
| publish: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: '>=1.23.3' | |
| - run: | | |
| echo "Preparing a release" | |
| echo "Module name ${{ github.event.repository.name }}" | |
| # Remove local replace directives (used for local dev only) | |
| sed -i '/replace github.com\/tiny-systems\/module =>/d' go.mod | |
| go mod tidy | |
| go run cmd/main.go tools build --version ${{github.ref_name}} --name github.com/${{ github.repository }} --devkey ${{secrets.TINY_DEV_SECRET}} |