@@ -110,7 +110,7 @@ jobs:
110110 mkdir -p ./ci-artifacts/linux
111111 ./.github/scripts/releases/extract_build_unix.sh ./ci-artifacts/linux ./ci-artifacts/opengoal-linux-static ./
112112 pushd ci-artifacts/linux
113- TAG_VAL=${{ needs.cut-release .outputs.new_tag }}
113+ TAG_VAL=${{ needs.cut_release .outputs.new_tag }}
114114 tar czf ../final/opengoal-linux-${TAG_VAL}.tar.gz .
115115 popd
116116 chmod +x ./ci-artifacts/opengoal-linux-static/lsp/lsp
@@ -120,7 +120,7 @@ jobs:
120120 run : |
121121 mkdir -p ./ci-artifacts/windows
122122 ./.github/scripts/releases/extract_build_windows.sh ./ci-artifacts/windows ./ci-artifacts/opengoal-windows-static ./
123- TAG_VAL=${{ needs.cut-release .outputs.new_tag }}
123+ TAG_VAL=${{ needs.cut_release .outputs.new_tag }}
124124 7z a -tzip ./ci-artifacts/final/opengoal-windows-${TAG_VAL}.zip ./ci-artifacts/windows/*
125125 cp ./ci-artifacts/opengoal-windows-static/lsp.exe ./ci-artifacts/final/opengoal-lsp-windows-${TAG_VAL}.exe
126126
@@ -129,7 +129,7 @@ jobs:
129129 mkdir -p ./ci-artifacts/macos
130130 ./.github/scripts/releases/extract_build_unix.sh ./ci-artifacts/macos ./ci-artifacts/opengoal-macos-static ./
131131 pushd ci-artifacts/macos
132- TAG_VAL=${{ needs.cut-release .outputs.new_tag }}
132+ TAG_VAL=${{ needs.cut_release .outputs.new_tag }}
133133 tar czf ../final/opengoal-macos-intel-${TAG_VAL}.tar.gz .
134134 popd
135135 chmod +x ./ci-artifacts/opengoal-macos-static/lsp/lsp
@@ -139,10 +139,10 @@ jobs:
139139 env :
140140 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
141141 run : |
142- gh release upload ${{ needs.cut-release .outputs.new_tag }} ${{ github.WORKSPACE }}/ci-artifacts/final/* --repo ${{ github.repository }} --clobber
142+ gh release upload ${{ needs.cut_release .outputs.new_tag }} ${{ github.WORKSPACE }}/ci-artifacts/final/* --repo ${{ github.repository }} --clobber
143143
144144 - name : Publish Release
145145 env :
146146 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
147147 run : |
148- gh release edit ${{ needs.cut-release .outputs.new_tag }} --draft=false --repo ${{ github.repository }}
148+ gh release edit ${{ needs.cut_release .outputs.new_tag }} --draft=false --repo ${{ github.repository }}
0 commit comments