Skip to content

Commit

Permalink
making it so the workflows publish a zipped file of the library and i…
Browse files Browse the repository at this point in the history
…nfo file
  • Loading branch information
hazelwiss committed Aug 28, 2024
1 parent d4d7f21 commit 3f6a9db
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy_retro_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/deploy_retro_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy_retro_win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 3f6a9db

Please sign in to comment.