Skip to content

Commit 3eef53c

Browse files
committed
Try working around actions/checkout#882
1 parent 0de50d0 commit 3eef53c

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

.github/workflows/publish.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,13 @@ jobs:
2323
steps:
2424
- name: "Checkout repository"
2525
uses: "actions/checkout@a12a3943b4bdde767164f792f33f40b04645d846"
26+
with:
27+
fetch-depth: 0
2628

2729
- name: "Require signed git tag"
2830
run: |
31+
# Work-around for actions/checkout#882 replacing all tags with lightweight tags.
32+
git fetch --tags --force origin
2933
git show ${{ github.ref_name }}
3034
git verify-tag ${{ github.ref_name }}
3135

0 commit comments

Comments
 (0)