Temp change to allow recover from an existing tag.

Tag was created when testing the workflow, this change ignores the
tagging errors temporarily.

Change-Id: If2daa90d80cfce905d06d219ccd2c61efb1fb6aa
Reviewed-on: https://flutter-review.googlesource.com/c/recipes/+/40600
Commit-Queue: Godofredo Contreras <godofredoc@google.com>
Reviewed-by: Jesse Seales <jseales@google.com>
Commit-Queue: Jesse Seales <jseales@google.com>
diff --git a/recipes/release/release_publish.resources/push_release.sh b/recipes/release/release_publish.resources/push_release.sh
index 64d0b03..1f4a943 100644
--- a/recipes/release/release_publish.resources/push_release.sh
+++ b/recipes/release/release_publish.resources/push_release.sh
@@ -7,7 +7,7 @@
 gh --version
 gh auth login --hostname github.com --git-protocol https --with-token < $TOKEN_PATH
 gh auth setup-git
-git tag $TAG $RELEASE_GIT__HASH
+git tag $TAG $RELEASE_GIT__HASH || true
 git rev-list -n 1 $GIT_BRANCH
-$DRY_RUN_CMD git push origin $TAG
+$DRY_RUN_CMD git push origin $TAG || true
 $DRY_RUN_CMD git push origin HEAD:$RELEASE_CHANNEL