Skip to content
This repository has been archived by the owner on Jun 11, 2024. It is now read-only.

Commit

Permalink
Upload export artifacts to GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
dorianpercic committed May 16, 2024
1 parent a2f1324 commit 5583ae6
Show file tree
Hide file tree
Showing 5 changed files with 38 additions and 3 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/linux_export.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,15 @@ jobs:
echo "res://rust.gdextension" >> godot/.godot/extension_list.cfg
just linux-release
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: Linux Godot Spike Binaries
path: |
export/linux/Godot Spike.x86_64
export/linux/libgodot_plugin.so
if-no-files-found: error

export-android:
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -95,3 +104,12 @@ jobs:
export GODOT_ANDROID_KEYSTORE_RELEASE_PASSWORD="android"
just setup-android
just android-release
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: Android Godot Spike Binaries
path: |
export/android/Godot Spike.apk
export/android/Godot Spike.idsig
if-no-files-found: error
8 changes: 8 additions & 0 deletions .github/workflows/macos_export.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,11 @@ jobs:
touch godot/.godot/extension_list.cfg
echo "res://rust.gdextension" >> godot/.godot/extension_list.cfg
just macos-release
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: MacOS Godot Spike Binaries
path: |
export/macos/Godot Spike.dmg
if-no-files-found: error
9 changes: 9 additions & 0 deletions .github/workflows/windows_export.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,12 @@ jobs:
touch godot/.godot/extension_list.cfg
echo "res://rust.gdextension" >> godot/.godot/extension_list.cfg
just windows-release
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: Windows Godot Spike Binaries
path: |
export/windows/Godot Spike.exe
export/windows/godot_plugin.dll
if-no-files-found: error
2 changes: 1 addition & 1 deletion godot/export_presets.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ permissions/location_hardware=false
permissions/manage_accounts=false
permissions/manage_app_tokens=false
permissions/manage_documents=false
permissions/manage_external_storage=false
permissions/manage_external_storage=true
permissions/master_clear=false
permissions/media_content_control=false
permissions/modify_audio_settings=false
Expand Down
4 changes: 2 additions & 2 deletions godot/rust.gdextension
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ android.debug.arm64 = "res://../rust/target/aarch64-linux-android/debug/libgo
android.release.arm64 = "res://../rust/target/aarch64-linux-android/release/libgodot_plugin.so"
windows.debug.x86_64 = "res://../rust/target/x86_64-pc-windows-msvc/debug/godot_plugin.dll"
windows.release.x86_64 = "res://../rust/target/x86_64-pc-windows-msvc/release/godot_plugin.dll"
macos.debug.arm64 = "res://../rust/target/debug/libgodot_plugin.dylib"
macos.release.arm64 = "res://../rust/target/release/libgodot_plugin.dylib"
macos.debug = "res://../rust/target/debug/libgodot_plugin.dylib"
macos.release = "res://../rust/target/release/libgodot_plugin.dylib"
ios.debug.arm64 = "res://../rust/target/aarch64-apple-ios/debug/libgodot_plugin.dylib"
ios.release.arm64 = "res://../rust/target/aarch64-apple-ios/release/libgodot_plugin.dylib"

0 comments on commit 5583ae6

Please sign in to comment.