Skip to content

Commit

Permalink
Switch back to an improved manual tag fetching method
Browse files Browse the repository at this point in the history
Apparently i'm special and the workaround for
actions/checkout#1467 doesn't work for me.
  • Loading branch information
sodevel committed Nov 13, 2023
1 parent 45e8509 commit 459563b
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/sources.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ jobs:
}
- uses: actions/checkout@v4.1.1
with:
fetch-tags: true
fetch-depth: 1
submodules: recursive
- name: Fetch tags
run: |
git fetch --prune --prune-tags --force --depth=1 --no-recurse-submodules
- uses: msys2/setup-msys2@v2.21.0
with:
msystem: mingw64
Expand Down Expand Up @@ -61,9 +62,10 @@ jobs:
}
- uses: actions/checkout@v4.1.1
with:
fetch-tags: true
fetch-depth: 1
submodules: recursive
- name: Fetch tags
run: |
git fetch --prune --prune-tags --force --depth=1 --no-recurse-submodules
- name: Create source archive
run: |
git archive "--output=wxFormBuilder-${{ steps.variables.outputs.result }}-source-full.tar" "--prefix=wxFormBuilder-${{ steps.variables.outputs.result }}/" HEAD
Expand Down

0 comments on commit 459563b

Please sign in to comment.