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 6168fea
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 0 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
11 changes: 11 additions & 0 deletions .github/workflows/macos_export.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,14 @@ jobs:
touch godot/.godot/extension_list.cfg
echo "res://rust.gdextension" >> godot/.godot/extension_list.cfg
just macos-release
- name: Compress DMG File
run: zip -r Godot_Spike_DMG.zip export/macos/Godot\ Spike.dmg

- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: MacOS Godot Spike Binaries
path: |
Godot_Spike_DMG.zip
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

0 comments on commit 6168fea

Please sign in to comment.