Skip to content

Commit 5926193

Browse files
authored
fix checkout in upload workflow
1 parent bc3613e commit 5926193

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/release-upload.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,10 @@ jobs:
2929
ARCHIVE_NAME: ${{ github.event.repository.name }}-${{ inputs.git-tag }}
3030
steps:
3131
- name: Checkout Source
32-
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
32+
uses: actions/checkout@v4
33+
with:
34+
fetch-depth: 0
35+
ref: ${{ inputs.git-tag }}
3336

3437
- name: Create Release Directory
3538
run: mkdir -p release

0 commit comments

Comments
 (0)