Skip to content

Commit 2dce8d4

Browse files
Alison WuAlison Wu
Alison Wu
authored and
Alison Wu
committed
Add tag-check to workflow
1 parent 2f39a1d commit 2dce8d4

File tree

2 files changed

+44
-3
lines changed

2 files changed

+44
-3
lines changed

.github/workflows/build-wheel-release-upload.yml

+21-3
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,32 @@ on:
44
workflow_dispatch:
55
push:
66
tags:
7-
- '*.*.*'
7+
- '*' # Trigger on all tags initially
88

99
jobs:
10+
tag-check:
11+
runs-on: ubuntu-latest
12+
outputs:
13+
tag_valid: ${{ steps.tag-check.outputs.tag_valid }}
14+
steps:
15+
- name: Extract and validate tag for (pre)-release
16+
id: tag-check
17+
run: |
18+
TAG_NAME=${GITHUB_REF#refs/tags/}
19+
20+
# Check if the tag matches the pattern, e.g. 3.1.32 or 0.1.3rc0
21+
if [[ "$TAG_NAME" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] || [[ "$TAG_NAME" =~ ^[0-9]+\.[0-9]+\.[0-9]+rc[0-9]+$ ]]; then
22+
echo "tag_valid=true" >> $GITHUB_OUTPUT
23+
fi
24+
1025
release:
26+
needs: tag-check
27+
if: needs.tag-check.outputs.tag_valid == 'true'
1128
permissions:
1229
contents: write
1330
uses: Billingegroup/release-scripts/.github/workflows/_build-wheel-release-upload.yml@v0
1431
with:
15-
project: diffpy.snmf
32+
project: {{ project_name }}
1633
secrets:
17-
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
34+
PYPI_TOKEN: {{ "${{ secrets.PYPI_TOKEN }}" }}
35+

news/tag-check-workflow.rst

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
**Added:**
2+
3+
* <news item>
4+
5+
**Changed:**
6+
7+
* Added tag check for release
8+
9+
**Deprecated:**
10+
11+
* <news item>
12+
13+
**Removed:**
14+
15+
* <news item>
16+
17+
**Fixed:**
18+
19+
* <news item>
20+
21+
**Security:**
22+
23+
* <news item>

0 commit comments

Comments
 (0)