Skip to content

Commit

Permalink
Fix github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
yunusey committed Jan 14, 2025
1 parent 72c3454 commit 2b44f47
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,14 @@ jobs:
ls -lah
- name: List files
run: |
cd ./game
ls -lah
ls -lah extern/release
- name: Web Build
run: |
cd ./game
mkdir -v -p build/web
godot --headless --verbose --export-release "Web" ../exports/
godot --headless --verbose --export-release "Web" build/web
ls -lah build/web
- name: Netlify headers
run: |
Expand Down
2 changes: 1 addition & 1 deletion game/GDNeuralNetwork.gdextension
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ macos.debug = "res://extern/debug/libgodot_neural_networks.dylib"
macos.release = "res://extern/release/libgodot_neural_networks.dylib"
macos.debug.arm64 = "res://extern/debug/libgodot_neural_networks.dylib"
macos.release.arm64 = "res://extern/release/libgodot_neural_networks.dylib"
web.debug.wasm32 = "res://extern/release/godot_neural_networks.wasm"
web.debug.wasm32 = "res://extern/debug/godot_neural_networks.wasm"
web.release.wasm32 = "res://extern/release/godot_neural_networks.wasm"

0 comments on commit 2b44f47

Please sign in to comment.