add patch for the great escape (usa) and jackie chan adventures (eu) widescreen 16:9 and 60 fps #1738
This file contains hidden or 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
name: Pack patches | |
on: [push, pull_request] | |
jobs: | |
pack: | |
name: Pack patches | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Create archives | |
run: | | |
7z a -r patches.zip ./patches/* | |
- name: Upload archives | |
uses: actions/upload-artifact@v4 | |
with: | |
name: cheats | |
path: ./patches.zip | |
if-no-files-found: error | |
release: | |
needs: [pack] | |
name: Publish release | |
if: github.ref == 'refs/heads/main' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Download artifacts | |
uses: actions/download-artifact@v4 | |
- name: Create a new release | |
uses: marvinpinto/action-automatic-releases@latest | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
automatic_release_tag: latest | |
prerelease: false | |
title: Latest Build | |
files: ./cheats/patches.zip |