We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2278233 commit 76697b9Copy full SHA for 76697b9
1 file changed
.github/workflows/build.yaml
@@ -5,6 +5,11 @@ on:
5
description: 'Tag from CPython repository'
6
required: true
7
default: 'v3.14.0'
8
+ skip-tag-check:
9
+ description: 'Allow running build for non-latest patch tags (useful for testing)'
10
+ required: true
11
+ type: boolean
12
+ default: false
13
permissions:
14
contents: write
15
jobs:
@@ -22,6 +27,7 @@ jobs:
22
27
echo "Provided tag $input_tag is not the latest patch for $major_minor (latest: $latest_patch)." >&2
23
28
exit 1
24
29
fi
30
+ if: ${{ github.event.inputs.skip-tag-check == false }}
25
31
- uses: actions/setup-python@master
26
32
with:
33
python-version: 3
0 commit comments