Skip to content

Tag a Release

Tag a Release #12

Workflow file for this run

# Tag a new release
# This is easier than having to run manual `git` operations on a local clone.
# It also runs on a schedule so we don't leave commits unreleased indefinitely
# (avoiding users having to ping "hey could someone cut a release").
name: Tag a Release
on:
# Allow devs to tag manually through the GitHub UI.
# For example after landing a fix that customers are waiting for.
workflow_dispatch:
# Run at 3PM UTC (8AM PST) on the 3rd and 18th of each month.
# This is a trade-off between making too many releases,
# which overwhelms BCR maintainers and over-notifies users,
# and releasing too infrequently which delays delivery of bugfixes and features.
schedule:
- cron: "0 15 3,18 * *"
jobs:
tag:
permissions:
contents: write # allow create tag
runs-on: ubuntu-latest
outputs:
new-tag: ${{ steps.ccv.outputs.new-tag }}
new-tag-version: ${{steps.ccv.outputs.new-tag-version}}
steps:
- uses: actions/checkout@v4
with:
# Need enough history to find the prior release tag
fetch-depth: 0
- name: Bump tag if necessary
id: ccv
uses: smlx/ccv@7318e2f25a52dcd550e75384b84983973251a1f8 # v0.10.0
release:

Check failure on line 35 in .github/workflows/tag.yaml

View workflow run for this annotation

GitHub Actions / Tag a Release

Invalid workflow file

The workflow is not valid. .github/workflows/tag.yaml (Line: 35, Col: 3): Error calling workflow 'aspect-build/rules_lint/.github/workflows/release.yml@defed5d8295735de79561c410483c58728c84907'. The workflow is requesting 'attestations: write, id-token: write', but is only allowed 'attestations: none, id-token: none'.
needs: tag
uses: ./.github/workflows/release.yml
with:
tag_name: ${{ needs.tag.outputs.new-tag-version }}
if: needs.tag.outputs.new-tag == 'true' && needs.tag.outputs.new-tag-version-type != 'major'
permissions:
contents: write # allow create release