Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add tag-check to workflow #105

Merged
merged 2 commits into from
Oct 19, 2024
Merged
Show file tree
Hide file tree
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
19 changes: 18 additions & 1 deletion .github/workflows/build-wheel-release-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,27 @@ on:
workflow_dispatch:
push:
tags:
- '*.*.*'
- '*' # Trigger on all tags initially

jobs:
tag-check:
runs-on: ubuntu-latest
outputs:
tag_valid: ${{ steps.tag-check.outputs.tag_valid }}
steps:
- name: Extract and validate tag for (pre)-release
id: tag-check
run: |
TAG_NAME=${GITHUB_REF#refs/tags/}

# Check if the tag matches the pattern, e.g. 3.1.32 or 0.1.3rc0
if [[ "$TAG_NAME" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] || [[ "$TAG_NAME" =~ ^[0-9]+\.[0-9]+\.[0-9]+rc[0-9]+$ ]]; then
echo "tag_valid=true" >> $GITHUB_OUTPUT
fi

release:
needs: tag-check
if: needs.tag-check.outputs.tag_valid == 'true'
permissions:
contents: write
uses: Billingegroup/release-scripts/.github/workflows/_build-wheel-release-upload.yml@v0
Expand Down
23 changes: 23 additions & 0 deletions news/tag-check-workflow.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
**Added:**

* <news item>

**Changed:**

* Added tag check for release

**Deprecated:**

* <news item>

**Removed:**

* <news item>

**Fixed:**

* <news item>

**Security:**

* <news item>