debug: ...

This commit is contained in:
2025-12-21 12:54:25 +01:00
parent 566f0f6ea2
commit 6f3b21ab17
2 changed files with 8 additions and 5 deletions

View File

@@ -30,10 +30,13 @@ jobs:
name: Build & Push to Registry
runs-on: ubuntu-latest
needs: test
if: startsWith(github.ref, 'refs/tags/v')
if: github.ref_type == 'tag' && startsWith(github.ref_name, 'v')
steps:
- name: Debug ref
run: echo "github.ref = ${{ github.ref }}"
run: |
echo "github.ref = ${{ github.ref }}"
echo "github.ref_type = ${{ github.ref_type }}"
echo "github.ref_name = ${{ github.ref_name }}"
- name: Checkout code
uses: actions/checkout@v4