From dd03ec9bbce8cd9fd3d6c2f016c217f6c48a9d46 Mon Sep 17 00:00:00 2001 From: Matt Dallmeyer Date: Wed, 9 Oct 2024 11:41:24 -0700 Subject: [PATCH] Update release-pipeline.yaml --- .github/workflows/release-pipeline.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release-pipeline.yaml b/.github/workflows/release-pipeline.yaml index a4d3deed7b..cc045af808 100644 --- a/.github/workflows/release-pipeline.yaml +++ b/.github/workflows/release-pipeline.yaml @@ -110,7 +110,7 @@ jobs: mkdir -p ./ci-artifacts/linux ./.github/scripts/releases/extract_build_unix.sh ./ci-artifacts/linux ./ci-artifacts/opengoal-linux-static ./ pushd ci-artifacts/linux - TAG_VAL=${{ needs.cut-release.outputs.new_tag }} + TAG_VAL=${{ needs.cut_release.outputs.new_tag }} tar czf ../final/opengoal-linux-${TAG_VAL}.tar.gz . popd chmod +x ./ci-artifacts/opengoal-linux-static/lsp/lsp @@ -120,7 +120,7 @@ jobs: run: | mkdir -p ./ci-artifacts/windows ./.github/scripts/releases/extract_build_windows.sh ./ci-artifacts/windows ./ci-artifacts/opengoal-windows-static ./ - TAG_VAL=${{ needs.cut-release.outputs.new_tag }} + TAG_VAL=${{ needs.cut_release.outputs.new_tag }} 7z a -tzip ./ci-artifacts/final/opengoal-windows-${TAG_VAL}.zip ./ci-artifacts/windows/* cp ./ci-artifacts/opengoal-windows-static/lsp.exe ./ci-artifacts/final/opengoal-lsp-windows-${TAG_VAL}.exe @@ -129,7 +129,7 @@ jobs: mkdir -p ./ci-artifacts/macos ./.github/scripts/releases/extract_build_unix.sh ./ci-artifacts/macos ./ci-artifacts/opengoal-macos-static ./ pushd ci-artifacts/macos - TAG_VAL=${{ needs.cut-release.outputs.new_tag }} + TAG_VAL=${{ needs.cut_release.outputs.new_tag }} tar czf ../final/opengoal-macos-intel-${TAG_VAL}.tar.gz . popd chmod +x ./ci-artifacts/opengoal-macos-static/lsp/lsp @@ -139,10 +139,10 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - gh release upload ${{ needs.cut-release.outputs.new_tag }} ${{ github.WORKSPACE }}/ci-artifacts/final/* --repo ${{ github.repository }} --clobber + gh release upload ${{ needs.cut_release.outputs.new_tag }} ${{ github.WORKSPACE }}/ci-artifacts/final/* --repo ${{ github.repository }} --clobber - name: Publish Release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - gh release edit ${{ needs.cut-release.outputs.new_tag }} --draft=false --repo ${{ github.repository }} + gh release edit ${{ needs.cut_release.outputs.new_tag }} --draft=false --repo ${{ github.repository }}