Workflow file for this run
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@v6 | ||
| - name: Create archives | ||
| run: | | ||
| 7z a -r patches.zip ./patches/* | ||
| - name: Upload archives | ||
| uses: actions/upload-artifact@v7 | ||
| 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 | ||
| permissions: | ||
| contents: write | ||
| steps: | ||
| - name: Download artifacts | ||
| uses: actions/download-artifact@v8 | ||
| with: | ||
| name: patches | ||
| path: ./cheats | ||
| - name: Create a new release | ||
| env: | ||
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| run: | | ||
| TAG=latest | ||
| if gh release view $TAG; then | ||
| echo "Release exists, uploading asset" | ||
| gh release upload $TAG ./cheats/patches.zip --clobber | ||
| else | ||
| echo "Creating release" | ||
| gh release create $TAG ./cheats/patches.zip \ | ||
| --title "Latest Build" \ | ||
| --notes "Automated build from main" | ||
| fi | ||