We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fa7137 commit 1382376Copy full SHA for 1382376
1 file changed
.github/workflows/release.yml
@@ -24,6 +24,8 @@ on:
24
tag_name:
25
required: true
26
type: string
27
+ checkout_ref:
28
+ type: string
29
publish_to_pypi:
30
description: 'Publish to PyPI'
31
@@ -41,7 +43,7 @@ jobs:
41
43
- name: Checkout
42
44
uses: actions/checkout@v5
45
with:
- ref: ${{ inputs.tag_name || github.ref_name }}
46
+ ref: ${{ inputs.checkout_ref || github.ref_name }}
47
- name: Create release archive and notes
48
run: .github/workflows/create_archive_and_notes.sh ${{ inputs.tag_name || github.ref_name }}
49
- name: Release
0 commit comments