Publish to BCR #18
Workflow file for this run
This file contains 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
# See https://github.com/bazel-contrib/publish-to-bcr | |
name: Publish to BCR | |
on: | |
# Run the publish workflow after a successful release | |
# Can be triggered from the release.yaml workflow | |
workflow_call: | |
inputs: | |
tag_name: | |
required: true | |
type: string | |
# In case of problems, let release engineers retry by manually dispatching | |
# the workflow from the GitHub UI | |
workflow_dispatch: | |
inputs: | |
tag_name: | |
required: true | |
type: string | |
jobs: | |
publish: | |
uses: bazel-contrib/publish-to-bcr/.github/workflows/[email protected] # 2025 March 15 | |
with: | |
tag_name: ${{ inputs.tag_name }} | |
# GitHub repository which is a fork of the upstream where the Pull Request will be opened. | |
registry_fork: aspect-build/bazel-central-registry | |
permissions: | |
attestations: write | |
contents: write | |
id-token: write | |
secrets: | |
publish_token: ${{ secrets.PUBLISH_TOKEN }} |