Skip to content

Commit 2460fcc

Browse files
author
Jon Palmer
committed
Fix GitHub release checkout to handle tag properly
1 parent e137bf2 commit 2460fcc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/production-release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,9 +208,12 @@ jobs:
208208
steps:
209209
- uses: actions/checkout@v4
210210
with:
211-
ref: ${{ needs.validate-tag.outputs.tag }}
212211
fetch-depth: 0
213212

213+
- name: Checkout tag
214+
run: |
215+
git checkout ${{ needs.validate-tag.outputs.tag }}
216+
214217
- name: Download distribution packages
215218
uses: actions/download-artifact@v4
216219
with:

0 commit comments

Comments
 (0)