From 91f022221e025197af655e2dae22d3bd36e0f242 Mon Sep 17 00:00:00 2001 From: David Souther Date: Mon, 2 Dec 2024 22:08:24 -0500 Subject: [PATCH] Use origin remote (#519) --- .github/workflows/deploy.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index df7444d0..b03a095e 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -42,8 +42,8 @@ jobs: npm run -w web deploy VERSION=$(grep version package.json | awk -F\" '{print $4}') git tag "$VERSION" main - git push "$REMOTE" "$VERSION" - git push "$REMOTE" main + git push origin "$VERSION" + git push origin main env: user_name: "github-actions[bot]" user_email: "github-actions[bot]@users.noreply.github.com"