cloudflare/pint
Publicmirrored from https://github.com/cloudflare/pintAvailable
.github/workflows/goreleaser.yml
25lines · modecode
| 1 | name: Check goreleaser config |
| 2 | |
| 3 | on: |
| 4 | push: |
| 5 | branches: |
| 6 | - main |
| 7 | pull_request: |
| 8 | branches: |
| 9 | - main |
| 10 | |
| 11 | permissions: read-all |
| 12 | |
| 13 | jobs: |
| 14 | goreleaser-config: |
| 15 | runs-on: ubuntu-latest |
| 16 | steps: |
| 17 | - name: Check out code |
| 18 | uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 |
| 19 | with: |
| 20 | show-progress: false |
| 21 | |
| 22 | - name: Check config |
| 23 | uses: goreleaser/goreleaser-action@e435ccd777264be153ace6237001ef4d979d3a7a # v6.4.0 |
| 24 | with: |
| 25 | args: check -f .goreleaser.yml |
| 26 | |