ci(mise): go backend no longer experimental #2576
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 | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| env: | |
| GOTOOLCHAIN: local | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Set up tools | |
| uses: jdx/mise-action@v3 | |
| with: | |
| version: 2025.5.9 | |
| - name: Run GoReleaser | |
| run: goreleaser release --clean --snapshot --skip=sign | |
| - uses: actions/upload-artifact@v6 | |
| with: | |
| name: Preview Binaries | |
| path: dist/hcloud-*/hcloud | |
| - name: Check for release errors | |
| run: scripts/check-release-error.sh |