Fix red CI: lowercase GHCR tags; stop gating release check on local Tier A #11
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: Public release check | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| public-release-check: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Install release-check tools | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y ripgrep python3-openpyxl | |
| - name: Run public release check | |
| run: make public-release-check |