From f11608e622db19a2852ba6d865f082a87ef157ad Mon Sep 17 00:00:00 2001 From: June <38109440+DevopsGoth@users.noreply.github.com> Date: Wed, 11 Oct 2023 14:55:01 -0600 Subject: [PATCH] Update dockerhub_release.yml --- .github/workflows/dockerhub_release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dockerhub_release.yml b/.github/workflows/dockerhub_release.yml index d1a068d..10bcceb 100644 --- a/.github/workflows/dockerhub_release.yml +++ b/.github/workflows/dockerhub_release.yml @@ -56,8 +56,10 @@ jobs: git config --local user.name "Kadena DevOps" git config --local user.email "devops@kadena.io" git add Dockerfile - git commit -m "chainweb-node version bump ${{ inputs.VERSION_NEW }}" git tag chainweb-${{ inputs.VERSION_NEW }} + git commit --allow-empty -m "chainweb-node version bump ${{ inputs.VERSION_NEW }}" + # allow empty in case this is a re-run + git status git push origin chainweb-${{ inputs.VERSION_NEW }} - name: Validate SHAs