Merge pull request #58 from fluxcd/docs/guide-menu-order #10
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: release | |
| on: | |
| push: | |
| tags: ['v*'] | |
| permissions: | |
| contents: read | |
| jobs: | |
| release: | |
| permissions: | |
| contents: write # for creating the GitHub release. | |
| id-token: write # for creating OIDC tokens for signing. | |
| attestations: write # for GitHub Attestations. | |
| artifact-metadata: write # for GitHub SLSA provenance. | |
| packages: write # for pushing and signing container images. | |
| uses: fluxcd/gha-workflows/.github/workflows/cli-plugin-release.yaml@v0.10.0 | |
| with: | |
| go-version: 1.26.x | |
| secrets: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} |