Skip to content

Commit

Permalink
Allow running release workflow manually
Browse files Browse the repository at this point in the history
  • Loading branch information
flwyd committed Sep 18, 2024
1 parent 3015222 commit ae539ef
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,13 @@ env:
ACTIONS_RUNNER_DEBUG: true
ACTIONS_STEP_LOG: true

# Only create automatic releases for prerelease (e.g. v0.1.2-rc0) tags because
# GitHub only includes "verified" commits in automatic release notes which seems
# orthogonal to "what changes are in this release."
# See https://github.com/orgs/community/discussions/31628
on:
# Allow manual workflow run.
workflow_dispatch:
# Only create automatic releases for prerelease (e.g. v0.1.2-rc0) tags because
# GitHub only includes "verified" commits in automatic release notes which
# seems orthogonal to "what changes are in this release."
# See https://github.com/orgs/community/discussions/31628
push:
tags:
- v[0-9]+.*-*
Expand Down

0 comments on commit ae539ef

Please sign in to comment.