Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
negativeExponent committed Sep 13, 2024
1 parent 9067d06 commit 7f97aa8
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/px68k.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: PX68K Libretro x86_64

on:
push:
workflow_dispatch:
schedule:
- cron: '0 2 * * *' # run at 2 AM UTC
watch: # this is a hack that lets repo owners trigger a build by starring
types: [started]
if: github.actor == github.event.repository.owner.login

jobs:
linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: build
run: |
make -j$(getconf _NPROCESSORS_ONLN) clean
make -j$(getconf _NPROCESSORS_ONLN)
zip -9 ../px68k_libretro.so.zip px68k_libretro.so
- name: Create new release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: Linux_64-bit
file: px68k_libretro.so.zip
overwrite: true

0 comments on commit 7f97aa8

Please sign in to comment.