test: send the bucket suite's local setup to CONTRIBUTING (#458) #331
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: | |
| branches: [main] | |
| workflow_dispatch: | |
| inputs: | |
| dry_run: | |
| description: 'Dry run (no tag, no release)' | |
| type: boolean | |
| default: false | |
| # Read at the top, write only on the job that tags and publishes. A workflow | |
| # with one job today can grow a second, and the second should not inherit the | |
| # right to move tags because the first needed it. | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: release-${{ github.ref }} | |
| cancel-in-progress: false | |
| jobs: | |
| release: | |
| permissions: | |
| contents: write | |
| id-token: write | |
| uses: FerrLabs/.github/.github/workflows/reusable-ferrflow-release.yml@b6a08e6055076c18cfa7b8f80c9925275ed407fe # main | |
| with: | |
| dry-run: ${{ inputs.dry_run || false }} | |
| secrets: | |
| TAG_SIGNING_KEY: ${{ secrets.TAG_SIGNING_KEY }} |