From 6c2c9c6a72b007b0af389b6210a278dc5fde9300 Mon Sep 17 00:00:00 2001 From: Wouter Wijsman Date: Thu, 19 Dec 2024 20:06:57 +0100 Subject: [PATCH] Fix release part of the workflow --- .github/workflows/build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4c34342..d51894a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -166,12 +166,14 @@ jobs: matrix: build: [linux, windows, psp, vita, wii] steps: - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 + with: + name: oceanpop-${{matrix.build}} - name: Zip artifacts run: | zip -r oceanpop-${{matrix.build}}.zip oceanpop-${{matrix.build}} - name: Release - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v2 with: files: oceanpop-${{matrix.build}}.zip prerelease: true