From 07e4c76ee85043d5bf0d74671b2972376ddb72f8 Mon Sep 17 00:00:00 2001 From: Dan Smith Date: Thu, 12 Dec 2024 20:54:25 +1300 Subject: [PATCH] Fix build error (#50) --- .github/workflows/build-release-tagged.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build-release-tagged.yml b/.github/workflows/build-release-tagged.yml index 6a24328..b235bd1 100644 --- a/.github/workflows/build-release-tagged.yml +++ b/.github/workflows/build-release-tagged.yml @@ -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 @@ -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