Skip to content

Commit

Permalink
Fix build error (#50)
Browse files Browse the repository at this point in the history
  • Loading branch information
dotherightthing committed Dec 12, 2024
1 parent 0f9caf4 commit 07e4c76
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/build-release-tagged.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,20 @@ jobs:

# https://help.github.com/en/actions/configuring-and-managing-workflows/persisting-workflow-data-using-artifacts
- name: Archive release folder
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: release
path: release
overwrite: true
include-hidden-files: false

- name: Archive changelog
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v4
with:
name: changelog
path: CHANGELOG.md
overwrite: true
include-hidden-files: false

# The 'release' job starts with a clean directory,
# we don't check out the repo again
Expand All @@ -82,14 +86,14 @@ jobs:
# (as of download-artifact@v2)
- name: Download release folder from Build
if: steps.check-tag.outputs.match == 'true'
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: release
path: release

- name: Download changelog from Build
if: steps.check-tag.outputs.match == 'true'
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: changelog
path: changelog
Expand Down

0 comments on commit 07e4c76

Please sign in to comment.