From f4522cbe33fa86fe85f9cbff22d4fe5cae0e90d0 Mon Sep 17 00:00:00 2001 From: Adam Hathcock Date: Wed, 5 Mar 2025 16:29:43 +0000 Subject: [PATCH] fix github action --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 753e9fafa..036b7ed6c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,7 +12,7 @@ jobs: version: ${{ steps.set-version.outputs.version }} steps: - name: Check if both branch and tag exist - if: github.ref_type == 'tag' && startsWith(github.ref, 'refs/tags/v3.') && (github.event.base_ref == 'refs/heads/main' || startsWith(github.event.base_ref, 'refs/heads/adam/') + if: github.ref_type == 'tag' && startsWith(github.ref, 'refs/tags/v3.') && (github.event.base_ref == 'refs/heads/main' || startsWith(github.event.base_ref, 'refs/heads/adam/')) run: echo "Both branch and tag match, proceeding..." - name: Checkout