Skip to content

Commit

Permalink
export test
Browse files Browse the repository at this point in the history
  • Loading branch information
pkdawson committed Jun 19, 2024
1 parent ec58214 commit 60985bc
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 4 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/gdext.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
uses: lukka/run-vcpkg@v11
with:
vcpkgGitCommitId: ${{ env.vcpkg_tag }}

- uses: actions/cache@v4
id: cache-godot-cpp
if: github.ref_type != 'tag'
Expand Down Expand Up @@ -258,7 +258,7 @@ jobs:

steps:
- uses: actions/checkout@v4

- name: Prepare files
id: prep_cs
run: |
Expand All @@ -273,9 +273,22 @@ jobs:
pkgdir=~/out/imgui-godot-${plugin_ver}
mkdir -p $pkgdir
mv * $pkgdir
- name: Upload package
uses: actions/upload-artifact@v4
with:
name: ${{ steps.prep_cs.outputs.pkgfn }}
path: ~/out

export_linux:
name: 🐧Export
runs-on: ubuntu-latest
needs: [package]

steps:
- uses: actions/download-artifact@v4
with:
pattern: imgui-godot-*_imgui*

- run: |
ls -R
1 change: 0 additions & 1 deletion .github/workflows/godot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ jobs:

strategy:
matrix:
gdver: ["4.2.2", "4.3.0-beta.1"]
include:
- gdver: "4.2.2"
gdver_full: 4.2.2.stable.mono
Expand Down

0 comments on commit 60985bc

Please sign in to comment.