debug tagging

This commit is contained in:
Schmieder, Jacob
2024-05-16 09:53:24 +00:00
parent 3fbcc52a5c
commit 63f56659c1
+13
View File
@@ -14,6 +14,19 @@ on:
type: boolean type: boolean
jobs: jobs:
check-tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'
- name: Check if tag is present
run: |
if [ -z "$GITHUB_REF" ]; then
echo "No tag found"
exit 1
fi
echo "Tag found: $GITHUB_REF"
Build-and-publish-to-Test-PyPI: Build-and-publish-to-Test-PyPI:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps: