debug: use yellow for low-quality bases #22
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: Pre-release | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - master | |
| # release: | |
| # types: [created] | |
| permissions: | |
| contents: write | |
| packages: write | |
| jobs: | |
| releases-matrix: | |
| name: Release Go Binary (pre-release, for testing purposes) | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| # build and publish in parallel: linux/386, linux/amd64, linux/arm64, windows/386, windows/amd64, darwin/amd64, darwin/arm64 | |
| goos: [linux, darwin] | |
| goarch: [amd64, arm64] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: wangyoucao577/go-release-action@v1 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| goos: ${{ matrix.goos }} | |
| goarch: ${{ matrix.goarch }} | |
| # goversion: '1.24.2' | |
| binary_name: 'hey' | |
| # extra_files: LICENSE README.md | |
| release_tag: 'latest' | |
| md5sum: false | |
| overwrite: true |