Skip to content

Commit

Permalink
upload releases
Browse files Browse the repository at this point in the history
  • Loading branch information
jonian committed Aug 8, 2024
1 parent 6ddfe9d commit 19530bd
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/libretro.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,20 @@ jobs:
path: |
noods_libretro.so
noods_libretro.info
update-release:
runs-on: ubuntu-latest
needs: [build-windows, build-mac, build-linux]

steps:
- name: Get artifacts
uses: actions/download-artifact@v2
- name: Package artifacts
run: for i in ./*; do zip -r -j ${i}.zip $i; done
- name: Upload release
uses: svenstaro/upload-release-action@v2
file_glob: true
file: *.zip
tag: release
body: Automatically generated builds
overwrite: true

0 comments on commit 19530bd

Please sign in to comment.