From cbbe119e3e3ea888150c0185b1d2125e95c77196 Mon Sep 17 00:00:00 2001 From: vados Date: Wed, 2 Oct 2024 13:21:14 +0900 Subject: [PATCH] fix(ci): clarify only long SHAs required, update repo URL --- .github/workflows/tag-release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tag-release.yaml b/.github/workflows/tag-release.yaml index 10ca073..96e16cb 100644 --- a/.github/workflows/tag-release.yaml +++ b/.github/workflows/tag-release.yaml @@ -10,7 +10,7 @@ on: inputs: ref: description: | - Github ref ('branch', 'tag-v1.0.0', '6d2db71') + Github ref (e.x. 'branch', 'tag-v1.0.0', '') required: false default: '' type: string @@ -41,4 +41,4 @@ jobs: - name: Create and push new tag run: | git tag v$(just print-version); - git push https://${{ secrets.RELEASE_PR_PAT }}@github.com/vadosware/pg_idkit.git --tags; + git push https://${{ secrets.RELEASE_PR_PAT }}@github.com/VADOSWARE/pg_idkit.git --tags;