-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6214784
commit 64d2b62
Showing
1 changed file
with
15 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,8 +37,13 @@ jobs: | |
python3 build.py | ||
- name: Check build | ||
run: | | ||
cd build | ||
ls gdcefSubProcess libgdcef.so libcef.so | ||
ls build/gdcefSubProcess build/libgdcef.so build/libcef.so | ||
tar -czvf build.tar.gz build | ||
- name: Deploy | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: build-linux-gdcef-godot-4.tar.gz | ||
path: build.tar.gz | ||
|
||
############################################################################# | ||
### Windows | ||
|
@@ -53,7 +58,7 @@ jobs: | |
- uses: ilammy/[email protected] | ||
|
||
- name: Checkout GDCEF | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
- name: Install system packages | ||
|
@@ -72,3 +77,10 @@ jobs: | |
Test-Path -Path \a\gdcef\gdcef\build\gdcefSubProcess.exe | ||
Test-Path -Path \a\gdcef\gdcef\build\libgdcef.dll | ||
Test-Path -Path \a\gdcef\gdcef\build\libcef.dll | ||
cd - | ||
tar -czvf build.tar.gz build | ||
- name: Deploy | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: build-windows-gdcef-godot-4.tar.gz | ||
path: build.tar.gz |