From c7fc8d53112fb57953aa2ba21c3697d15caa7f46 Mon Sep 17 00:00:00 2001 From: Nicolas Pennec Date: Tue, 26 Sep 2023 14:38:40 +0200 Subject: [PATCH] [ci] fix "Push changes" step on release workflow Enable the `force` option due to version bump of `actions/checkout@v4`, to avoid the tag "already exists" error. --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 682907d1fc..f6c8e1b605 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -63,3 +63,4 @@ jobs: github_token: ${{ secrets.GITHUB_TOKEN }} tags: true branch: build + force: true