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
nickg committed Jul 21, 2024
1 parent 5bb98fa commit 9254c03
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/actions/windows-installer/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ runs:
git
autoconf
automake-wrapper
- name: Fix missing tags
shell: msys2 {0}
run: |
git fetch --tags --force
- name: Generate configure script
shell: msys2 {0}
run: bash autogen.sh
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/release-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Fix missing tags
run: |
git fetch --tags --force
- uses: msys2/setup-msys2@v2
with:
msystem: ${{matrix.sys}}
Expand All @@ -34,7 +37,7 @@ jobs:
- name: Debugging for tags
run: |
git tag
git describe --long
git describe --tags --long
- name: Build MSYS2 ${{matrix.sys}} package
run: |
cd contrib/msys2
Expand Down

0 comments on commit 9254c03

Please sign in to comment.