Release Buildpack #25
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 Buildpack | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| dry_run: | |
| description: Execute the release workflow but skip any steps that publish (for testing purposes) | |
| type: boolean | |
| default: false | |
| # Disable all GITHUB_TOKEN permissions, since the GitHub App token is used instead. | |
| permissions: {} | |
| jobs: | |
| release: | |
| name: Release | |
| uses: heroku/languages-github-actions/.github/workflows/_buildpacks-release.yml@latest | |
| with: | |
| app_id: ${{ vars.LINGUIST_GH_APP_ID }} | |
| dry_run: ${{ inputs.dry_run }} | |
| reviewers: 'dzuelke' | |
| secrets: | |
| app_private_key: ${{ secrets.LINGUIST_GH_PRIVATE_KEY }} | |
| cnb_registry_token: ${{ secrets.CNB_REGISTRY_RELEASE_BOT_GITHUB_TOKEN }} | |
| docker_hub_user: ${{ secrets.DOCKER_HUB_USER }} | |
| docker_hub_token: ${{ secrets.DOCKER_HUB_TOKEN }} |