forked from PCSX2/pcsx2_patches
-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (39 loc) · 1.1 KB
/
pack_patches.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Pack patches
on: [push, pull_request]
jobs:
pack:
name: Pack and publish 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
- name: Update tag
uses: actions/github-script@v7
if: github.ref == 'refs/heads/main'
with:
script: |
github.rest.git.updateRef({
owner: context.repo.owner,
repo: context.repo.repo,
ref: 'refs/tags/latest',
sha: context.sha,
force: true
})
- name: Create release
uses: softprops/action-gh-release@v2
if: github.ref == 'refs/heads/main'
with:
make_latest: true
tag_name: latest
fail_on_unmatched_files: true
name: Latest Build
files: ./patches.zip