-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
making it so the workflows publish a zipped file of the library and i…
…nfo file
- Loading branch information
Showing
3 changed files
with
6 additions
and
5 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 |
---|---|---|
|
@@ -17,13 +17,13 @@ jobs: | |
mkdir build | ||
cd build | ||
cmake .. && cmake --build . --target skyemu_libretro --config Release | ||
zip skyemu_libretro.zip skyemu_libretro.so ../skyemu_libretro.info | ||
- name: GH Release 🚀 | ||
# You may pin to the exact commit or the version. | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: LinuxRelease (Libretro) | ||
path: build/skyemu_libretro.so | ||
path: build/skyemu_libretro.zip | ||
#uses: softprops/[email protected] | ||
#with: | ||
# # Note-worthy description of changes in release | ||
|
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 |
---|---|---|
|
@@ -11,12 +11,13 @@ jobs: | |
mkdir build | ||
cd build | ||
cmake .. && cmake --build . --target skyemu_libretro | ||
zip skyemu_libretro.zip skyemu_libretro.dylib ../skyemu_libretro.info | ||
- name: GH Release 🚀 | ||
# You may pin to the exact commit or the version. | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: MacOSRelease (Libretro) | ||
path: build/skyemu_libretro.dylib | ||
path: build/skyemu_libretro.zip | ||
#uses: softprops/[email protected] | ||
#with: | ||
# # Note-worthy description of changes in release | ||
|
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 |
---|---|---|
|
@@ -16,13 +16,13 @@ jobs: | |
cd build | ||
cmake -G "Visual Studio 16 2019" -A x64 -DCMAKE_SYSTEM_VERSION=10.0.19041.0 .. | ||
cmake --build . --config Release --target skyemu_libretro | ||
zip build/skyemu_libretro.zip build/skyemu_libretro.dll skyemu_libretro.info | ||
- name: GH Release 🚀 | ||
# You may pin to the exact commit or the version. | ||
uses: actions/upload-artifact@v2 | ||
with: | ||
name: WindowsRelease (Libretro) | ||
path: build/skyemu_libretro.dll | ||
path: build/skyemu_libretro.zip | ||
#uses: softprops/[email protected] | ||
#with: | ||
# # Note-worthy description of changes in release | ||
|