Release 6.4.3 #28
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: CI/CD | |
| on: | |
| workflow_dispatch: | |
| push: | |
| tags: | |
| - 'v[0-9]+.[0-9]+.[0-9]+' | |
| jobs: | |
| tests: | |
| strategy: | |
| matrix: | |
| node: [22, 24] | |
| uses: ./.github/workflows/service_tests.yml | |
| with: | |
| node-version: ${{ matrix.node }} | |
| publish: | |
| needs: [tests] | |
| name: Publish @latest | |
| # Reusable workflows can only maintain or reduce the caller's permissions, | |
| # never elevate them - so id-token must be granted here for OIDC to work. | |
| permissions: | |
| id-token: write | |
| contents: read | |
| uses: ./.github/workflows/service_publish.yml | |
| with: | |
| tag: latest |