diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2b31cc26..26849312 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -36,7 +36,7 @@ jobs: id: fix-tags if: github.event_name != 'push' run: | - git fetch -f origin ${{ github.ref }}:${{ github.ref }} + git fetch --tags --force - name: Mark Stable id: channel if: github.event_name == 'workflow_dispatch' && github.event.inputs.type != 'nightly' @@ -111,7 +111,7 @@ jobs: id: fix-tags if: github.event_name != 'push' run: | - git fetch -f origin ${{ github.ref }}:${{ github.ref }} + git fetch --tags --force - name: Mark Stable id: channel if: github.event_name == 'workflow_dispatch' && github.event.inputs.type != 'nightly' |