Skip to content

Commit 714884f

Browse files
authored
Update build.yml
1 parent a409c49 commit 714884f

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

.github/workflows/build.yml

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
workflow_dispatch:
55
push:
66
branches:
7-
- '**'
7+
- "**"
88

99
jobs:
1010
build:
@@ -14,9 +14,9 @@ jobs:
1414
config:
1515
- name: Windows
1616
os: windows-latest
17-
18-
#- name: macOS
19-
# os: macos-latest
17+
18+
# - name: macOS
19+
# os: macos-latest
2020

2121
- name: Android32
2222
os: ubuntu-latest
@@ -30,26 +30,28 @@ jobs:
3030
runs-on: ${{ matrix.config.os }}
3131

3232
steps:
33-
- uses: actions/checkout@v3
33+
- uses: actions/checkout@v4
34+
with:
35+
submodules: recursive
3436

3537
- name: Build the mod
3638
uses: geode-sdk/build-geode-mod@main
3739
with:
38-
sdk: nightly
40+
bindings: geode-sdk/bindings
41+
bindings-ref: main
3942
combine: true
4043
target: ${{ matrix.config.target }}
41-
bindings: "LXanii/bindings"
42-
44+
4345
package:
4446
name: Package builds
4547
runs-on: ubuntu-latest
4648
needs: ['build']
4749

4850
steps:
49-
- uses: geode-sdk/build-geode-mod@combine
51+
- uses: geode-sdk/build-geode-mod/combine@main
5052
id: build
5153

52-
- uses: actions/upload-artifact@v3
54+
- uses: actions/upload-artifact@v4
5355
with:
5456
name: Build Output
55-
path: ${{ steps.build.outputs.build-output }}
57+
path: ${{ steps.build.outputs.build-output }}

0 commit comments

Comments
 (0)