Changes to Widescreen Patch in The Godfather for better FOV and correcting minor gameplay issues #1306
This file contains 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@v3 | |
- name: Create archives | |
run: | | |
7z a -r patches.zip ./patches/* | |
- name: Upload archives | |
uses: actions/upload-artifact@v3 | |
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@v3 | |
- 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 |