From 2bb4d62a052b3701670c22f104ac1e39cc5cba2f Mon Sep 17 00:00:00 2001 From: Andrew Moffat Date: Mon, 13 Feb 2023 10:20:08 -0800 Subject: [PATCH] chatgpt lied to me about the correct syntax --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c3134f1d..3c850f76 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -147,8 +147,8 @@ jobs: - name: Tag commit run: | - git tag "$(steps.get_version.outputs.version)" "${{github.ref_name}}" - git push -f origin "$(steps.get_version.outputs.version)" + git tag "${{steps.get_version.outputs.version}}" "${{github.ref_name}}" + git push -f origin "${{steps.get_version.outputs.version}}" - name: Set up Python uses: actions/setup-python@v2