| commit | f7742a5a0f0e68acf2c51f10578f1297f5e916dd | [log] [tgz] |
|---|---|---|
| author | Godofredo Contreras <godofredoc@google.com> | Wed Mar 15 21:31:15 2023 +0000 |
| committer | CQ Bot Account <flutter-scoped@luci-project-accounts.iam.gserviceaccount.com> | Wed Mar 15 21:31:15 2023 +0000 |
| tree | b76ed5fb3e01de123bed729eca3b28e373d6cfba | |
| parent | 8f4689b66715252d8d9c83f52540fa4786fc6c30 [diff] |
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