fix: try to unstick release (#467) #47
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
# 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 | |
# Or, developers can manually push a tag from their clone | |
push: | |
tags: | |
- "v*.*.*" | |
jobs: | |
release: | |
uses: bazel-contrib/.github/.github/workflows/release_ruleset.yaml@cb461f299b8d472a82d1d88c4cef7d6013721742 # 2024-12-03 | |
with: | |
prerelease: false | |
release_files: rules_lint-*.tar.gz | |
tag_name: ${{ inputs.tag_name }} |