Fix release binary swap and plt build on image-only playlists #2392
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: fast lint checks | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| shellcheck: | |
| name: runner / shellcheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 | |
| - name: shellcheck | |
| uses: reviewdog/action-shellcheck@v1 | |
| with: | |
| github_token: ${{ secrets.GORELEASER_GITHUB_TOKEN }} | |
| reporter: github-pr-review # Change reporter. | |
| path: "." # Optional. | |
| pattern: "*.sh" # Optional. | |
| exclude: | | |
| */.git/* | |
| ./vendor/* | |
| golangci-lint: | |
| name: runner / golangci-lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code into the Go module directory | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 | |
| - name: golangci-lint | |
| uses: reviewdog/action-golangci-lint@v2 | |
| with: | |
| reporter: github-pr-review | |
| github_token: ${{ secrets.GORELEASER_GITHUB_TOKEN }} | |
| golangci_lint_flags: "--config=.golangci.yml" | |
| vendor-neutral: | |
| name: runner / vendor-neutral | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 | |
| with: | |
| persist-credentials: false | |
| - name: vendor-neutrality guard | |
| run: ./scripts/check-vendor-neutral.sh |