diff --git a/.github/workflows/centos-release.yml b/.github/workflows/centos-release.yml index 736224b97..bed13300b 100644 --- a/.github/workflows/centos-release.yml +++ b/.github/workflows/centos-release.yml @@ -272,13 +272,13 @@ jobs: - name: Download Artifact uses: actions/download-artifact@v3 with: - name: $ZIP_NAME + name: ${{env.ZIP_NAME}} path: . - name: Download Artifact uses: actions/download-artifact@v3 with: - name: $SINGLEFILE_NAME + name: ${{env.SINGLEFILE_NAME}} path: . - name: Upload Release Asset @@ -286,7 +286,7 @@ jobs: GH_REPO: ${{ github.repository }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - gh release upload --repo ${{env.GH_REPO}} ${{ steps.get_release.outputs.tag_name }} $ZIP_NAME - gh release upload --repo ${{env.GH_REPO}} ${{ steps.get_release.outputs.tag_name }} $SINGLEFILE_NAME + gh release upload --repo ${{env.GH_REPO}} ${{ steps.get_release.outputs.tag_name }} ${{env.ZIP_NAME}} + gh release upload --repo ${{env.GH_REPO}} ${{ steps.get_release.outputs.tag_name }} ${{env.SINGLEFILE_NAME}} ######################## \ No newline at end of file diff --git a/.github/workflows/ubuntu-release.yml b/.github/workflows/ubuntu-release.yml index 49002094a..aa2a57e3a 100644 --- a/.github/workflows/ubuntu-release.yml +++ b/.github/workflows/ubuntu-release.yml @@ -221,6 +221,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | gh release upload ${{ steps.get_release.outputs.tag_name }} _build/${{env.TGZ_NAME}} - gh release upload ${{ steps.get_release.outputs.tag_name }} _build/${{env.TGZ_NAME}} + gh release upload ${{ steps.get_release.outputs.tag_name }} ${{ steps.create-single-file.outputs.archive-path }} ######################## \ No newline at end of file diff --git a/.github/workflows/windows-vcpkg.yml b/.github/workflows/windows-vcpkg.yml index 063bdab22..112e946ba 100644 --- a/.github/workflows/windows-vcpkg.yml +++ b/.github/workflows/windows-vcpkg.yml @@ -255,13 +255,13 @@ jobs: - name: Download Artifact uses: actions/download-artifact@v3 with: - name: $ZIP_NAME + name: ${{env.ZIP_NAME}} path: . - name: Download Artifact uses: actions/download-artifact@v3 with: - name: $SINGLEFILE_NAME + name: ${{env.SINGLEFILE_NAME}} path: . - name: Upload Release Asset @@ -269,7 +269,7 @@ jobs: GH_REPO: ${{ github.repository }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - gh release upload --repo ${{env.GH_REPO}} ${{ steps.get_release.outputs.tag_name }} $ZIP_NAME - gh release upload --repo ${{env.GH_REPO}} ${{ steps.get_release.outputs.tag_name }} $SINGLEFILE_NAME + gh release upload --repo ${{env.GH_REPO}} ${{ steps.get_release.outputs.tag_name }} ${{env.ZIP_NAME}} + gh release upload --repo ${{env.GH_REPO}} ${{ steps.get_release.outputs.tag_name }} ${{env.SINGLEFILE_NAME}} ######################## \ No newline at end of file