From 9c0eb01393e6d5ee786f53c4befcf4c9a4f285a3 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sun, 19 Feb 2023 11:29:09 -0800 Subject: [PATCH] ci: use shell to git push tag for release --- .github/workflows/release-tip.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release-tip.yml b/.github/workflows/release-tip.yml index 6786f436b..5edefaa0a 100644 --- a/.github/workflows/release-tip.yml +++ b/.github/workflows/release-tip.yml @@ -53,11 +53,9 @@ jobs: # Update the Release Tag - name: Tip Tag - uses: rickstaa/action-create-tag@v1 - with: - tag: "tip" - message: "Latest Continuous Release" - force_push_tag: true + run: | + git tag -fa tip -m "Latest Continuous Release" ${GITHUB_SHA} + git push --force origin tip - name: Codesign app bundle env: