chore: fix stardoc targets #6
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
# Automatically perform a release whenever a new "release-like" tag is pushed to the repo. | |
name: Release | |
on: | |
push: | |
tags: | |
# Detect tags that look like a release. | |
# Note that we don't use a "v" prefix to help anchor this pattern. | |
# This is purely a matter of preference. | |
- "*.*.*" | |
jobs: | |
release: | |
# Re-use https://github.com/bazel-contrib/.github/blob/v5/.github/workflows/release_ruleset.yaml | |
uses: bazel-contrib/.github/.github/workflows/release_ruleset.yaml@v5 | |
with: | |
prerelease: false | |
release_files: rules_proto-*.tar.gz |