Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ on:
push:
branches:
- main
workflow_dispatch:
inputs:
tag:
description: "Existing release tag to publish (e.g. v1.3.3)"
required: true

concurrency:
group: release-please
Expand Down Expand Up @@ -37,13 +42,13 @@ jobs:
permissions:
contents: read
needs: release-please
if: needs.release-please.outputs.release_created
if: needs.release-please.outputs.release_created || github.event_name == 'workflow_dispatch'
runs-on: ubuntu-latest
steps:
- name: Checkout release commit
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
ref: ${{ needs.release-please.outputs.release_tag }}
ref: ${{ needs.release-please.outputs.release_tag || inputs.tag }}
fetch-depth: 0
persist-credentials: false

Expand Down
Loading