Skip to content

Commit e7eefc9

Browse files
committed
fix download url and build dir
1 parent 2063aeb commit e7eefc9

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

.forgejo/workflows/build.yaml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,18 +57,19 @@ jobs:
5757
run: |
5858
geode sdk update 5.4.1
5959
# geode sdk install-binaries -p ${{ matrix.config.platform }} # commenting this out for now as codeberg is ratelimited by github
60-
# curl -L "https://prefire.prevter.me/f/3402c83a2691435b91d720cd73782900/download" -o android64.zip
61-
curl -L "https://prefire.prevter.me/f/ccfac9eb1fab4ccda2cc0e63130289a7/download" -o android64.zip
60+
curl -L "https://github.com/geode-sdk/geode/releases/download/v5.4.1/geode-v5.4.1-${{ matrix.config.platform }}.zip" -o geode-v5.4.1-${{ matrix.config.platform }}.zip
6261
mkdir -p $GEODE_SDK/bin
6362
mkdir -p $GEODE_SDK/bin/5.4.1
64-
unzip -o android64.zip -d $GEODE_SDK/bin/5.4.1
63+
unzip -o geode-v5.4.1-${{ matrix.config.platform }}.zip -d $GEODE_SDK/bin/5.4.1
6564
git clone https://github.com/geode-sdk/bindings --depth=1 /workspace/bindings
6665
6766
- name: Configure & Build
6867
run: |
68+
# TODO: change this to use cmake instead
6969
GEODE_BINDINGS_REPO_PATH=/workspace/bindings geode build -p ${{ matrix.config.platform }} --config RelWithDebInfo
7070
mkdir -p /workspace/out
71-
cp build/${{ env.MOD_ID }}.geode /workspace/out/
71+
# windows is win
72+
cp build-android64/${{ env.MOD_ID }}.geode /workspace/out/
7273
7374
- name: Upload artifact
7475
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)