Bump protoc_plugin from 23.0.0 to 24.0.0 (#2677) #3644
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: CI | |
| on: | |
| push: | |
| branches: [main, feature.*] | |
| tags: ['[0-9]+.[0-9]+.*'] | |
| pull_request: | |
| jobs: | |
| test: | |
| uses: ./.github/workflows/test.yml | |
| secrets: inherit | |
| double_check: | |
| name: Double-check | |
| runs-on: ubuntu-latest | |
| needs: [test] | |
| if: "github.ref_type == 'tag' && github.event.repository.fork == false" | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: ./.github/util/initialize | |
| with: {github-token: "${{ github.token }}"} | |
| - name: Run checks | |
| run: dart run grinder double-check-before-release | |
| test_vendor: | |
| needs: [double_check] | |
| if: "github.ref_type == 'tag' && github.event.repository.fork == false" | |
| uses: ./.github/workflows/test-vendor.yml | |
| secrets: inherit | |
| release: | |
| needs: [test_vendor] | |
| if: "github.ref_type == 'tag' && github.event.repository.fork == false" | |
| permissions: | |
| attestations: write | |
| contents: write | |
| id-token: write | |
| uses: ./.github/workflows/release.yml | |
| secrets: inherit |