Skip to content

Release

Release #60

Workflow file for this run

# Cut a release whenever a new tag is pushed to the repo.
name: Release
on:
# Can be triggered from the tag.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
# Or, developers can manually push a tag from their clone
push:
tags:
- "v*.*.*"
permissions:
id-token: write # Needed to attest provenance
attestations: write # Needed to attest provenance
contents: write # Needed to create release
jobs:
release:
uses: bazel-contrib/.github/.github/workflows/[email protected] # 2025-03-17
with:
prerelease: false
release_files: rules_lint-*.tar.gz
tag_name: ${{ inputs.tag_name }}
publish:
needs: release
uses: ./.github/workflows/publish.yaml
with:
tag_name: ${{ inputs.tag_name }}
secrets:
publish_token: ${{ secrets.PUBLISH_TOKEN }}