From be2beed888c09ed1bdae35fe52c9d572b3573349 Mon Sep 17 00:00:00 2001 From: Dudrie Date: Sun, 14 Feb 2021 14:35:39 +0100 Subject: [PATCH] Fix version bump failing if version was the correct one previously. --- .github/workflows/build-push-docker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-push-docker.yml b/.github/workflows/build-push-docker.yml index ee6d2a708..c2df81e2f 100644 --- a/.github/workflows/build-push-docker.yml +++ b/.github/workflows/build-push-docker.yml @@ -24,7 +24,7 @@ jobs: # Change the version to be the correct one so the version in the image is always the correct one. - name: Set new version - run: pnpm version --no-git-tag-version ${{ github.event.release.tag_name }} + run: pnpm version --no-git-tag-version --allow-same-version ${{ github.event.release.tag_name }} # Setting up Buildx because it's needed by build-push-action - name: Setup Docker Buildx