Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pkdawson committed Aug 9, 2024
1 parent a01a08f commit 2ad4f4d
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/gdext.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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}
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down

0 comments on commit 2ad4f4d

Please sign in to comment.