Skip to content

Commit

Permalink
Workflows: Replace deprecated actions with the new ones
Browse files Browse the repository at this point in the history
"Release" step now no longer redownloads the artifact,
instead it does everything in one go
  • Loading branch information
CookiePLMonster committed Dec 29, 2024
1 parent 85f24d8 commit cacc03f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/pack_patches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Upload archives
uses: actions/upload-artifact@v4
with:
name: cheats
name: patches
path: ./patches.zip
if-no-files-found: error

Expand All @@ -29,7 +29,7 @@ jobs:
github.rest.git.updateRef({
owner: context.repo.owner,
repo: context.repo.repo,
ref: 'refs/tags/latest',
ref: 'tags/latest',
sha: context.sha,
force: true
})
Expand All @@ -39,7 +39,9 @@ jobs:
if: github.ref == 'refs/heads/main'
with:
make_latest: true
generate_release_notes: true
tag_name: latest
fail_on_unmatched_files: true
name: Latest Build
body: Test
files: ./patches.zip

0 comments on commit cacc03f

Please sign in to comment.