From 2ad4f4d7e440b015bd7d9a2880d2fe51b0661f95 Mon Sep 17 00:00:00 2001 From: Patrick Dawson Date: Fri, 9 Aug 2024 23:44:58 +0200 Subject: [PATCH] fix --- .github/workflows/gdext.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/gdext.yml b/.github/workflows/gdext.yml index 11cadc4..b96b75e 100644 --- a/.github/workflows/gdext.yml +++ b/.github/workflows/gdext.yml @@ -153,6 +153,10 @@ jobs: matrix: precision: [single, double] + outputs: + pkg_single: ${{ steps.prep.outputs.pkg_single }} + pkg_double: ${{ steps.prep.outputs.pkg_double }} + steps: - uses: actions/checkout@v4 with: @@ -202,7 +206,7 @@ jobs: pkgfn=imgui-godot-${plugin_ver}_imgui-${imgui_ver}${{ matrix.precision == 'double' && '_double-precision' || '' }} echo $pkgfn echo "pkgfn=$pkgfn" >> $GITHUB_OUTPUT - echo "pkg_${{ matrix.precision }}=$pkgfn" >> $GITHUB_ENV + echo "pkg_${{ matrix.precision }}=$pkgfn" >> $GITHUB_OUTPUT rm -rf gdext pkgdir=~/out/imgui-godot-${plugin_ver} @@ -290,7 +294,7 @@ jobs: - uses: actions/download-artifact@v4 with: - name: ${{ env.pkg_single }} + name: ${{ needs.package.outputs.pkg_single }} - uses: chickensoft-games/setup-godot@v2 with: @@ -370,7 +374,7 @@ jobs: - uses: actions/download-artifact@v4 with: - name: ${{ env.pkg_single }} + name: ${{ needs.package.outputs.pkg_single }} - uses: chickensoft-games/setup-godot@v2 with: @@ -418,7 +422,7 @@ jobs: - uses: actions/download-artifact@v4 with: - name: ${{ env.pkg_single }} + name: ${{ needs.package.outputs.pkg_single }} - uses: chickensoft-games/setup-godot@v2 with: