Skip to content

Commit

Permalink
Add workaround for actions/checkout#290
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanzilla committed Feb 7, 2024
1 parent 87efa69 commit 03e2860
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ jobs:
with:
fetch-depth: 0

- name: Hack around https://github.com/actions/checkout/issues/290
run: |
git fetch --tags --force
- name: Install and run Luacheck
uses: nebularg/actions-luacheck@v1
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ jobs:
with:
fetch-depth: 0

- name: Hack around https://github.com/actions/checkout/issues/290
run: |
git fetch --tags --force
- name: Install and run Luacheck
uses: nebularg/actions-luacheck@v1
with:
Expand Down

0 comments on commit 03e2860

Please sign in to comment.