We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d567fd commit aa465bbCopy full SHA for aa465bb
1 file changed
.forgejo/workflows/build.yaml
@@ -56,7 +56,11 @@ jobs:
56
- name: Install SDK & Binaries
57
run: |
58
geode sdk update stable
59
- geode sdk install-binaries -p ${{ matrix.config.platform }}
+ # 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
+ mkdir -p $GEODE_SDK/bin
62
+ mkdir -p $GEODE_SDK/bin/5.5.3
63
+ unzip -o android64.zip -d $GEODE_SDK/bin/5.5.3
64
git clone https://github.com/geode-sdk/bindings --depth=1 /workspace/bindings
65
66
- name: Configure & Build
0 commit comments