git.y1.nz

SameBoy

Accurate GB/GBC emulator
download: https://git.y1.nz/archives/sameboy.tar.gz
README | Files | Log | Refs | LICENSE

commit 0989ee27637a69e79a78aa698038fd983a742924
parent 288bd84d1909afd9585c2118358e9e70b707e4fb
Author: Lior Halphon <LIJI32@gmail.com>
Date:   Fri, 30 Dec 2022 18:05:34 +0200

Automatic libretro boot ROM rebuild

Diffstat:
A.github/workflows/libretro.yml31+++++++++++++++++++++++++++++++
1 file changed, 31 insertions(+), 0 deletions(-)

diff --git a/.github/workflows/libretro.yml b/.github/workflows/libretro.yml @@ -0,0 +1,31 @@ +name: "libretro branch update" + +on: + push: + branches: + - master + +jobs: + libretro-prebuilt-update: + strategy: + fail-fast: false + matrix: + os: [ubuntu-latest] + runs-on: ${{ matrix.os }} + steps: + - uses: actions/checkout@v2 + name: Checkout + with: + repository: LIJI32/SameBoy + token: ${{ secrets.WEBSITETOKEN }} + submodules: false + - name: Install Deps + shell: bash + run: | + ./.github/actions/install_deps.sh ${{ matrix.os }} + - name: Build Boot ROMs + run: | + make -j bootroms && mv build/bin/BootROMs BootROMs/prebuilt + - name: Push changes + run: | + git config --global --add --bool push.autoSetupRemote true && git config --global user.name 'Libretro Updater' && (git branch --delete libretro || true) && git checkout -b libretro && git config --global user.email '<>' && git add BootROMs/prebuilt/* && git commit -m 'Update prebuilt boot ROMs' && git push --force

This webpage is intended to be an accessible preview of this repository. To get a fuller picture, clone it and use the git CLI.