From c0483bdf3e2c084bacbb49bcc4c899b91087813c Mon Sep 17 00:00:00 2001 From: eitsupi Date: Sun, 18 Feb 2024 12:16:30 +0000 Subject: [PATCH] ci: fix migration to actions/download-artifact@v4 --- .github/workflows/release-lib.yaml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-lib.yaml b/.github/workflows/release-lib.yaml index 02f169498..6647526c5 100644 --- a/.github/workflows/release-lib.yaml +++ b/.github/workflows/release-lib.yaml @@ -174,10 +174,23 @@ jobs: devtools::install_local(force = TRUE) testthat::test_dir("tests") + merge: + runs-on: ubuntu-latest + needs: + - build + - test + steps: + - name: Merge Artifacts + uses: actions/upload-artifact/merge@v4 + with: + name: libs + pattern: libs-* + release: needs: - build - test + - merge runs-on: ubuntu-latest if: startsWith(github.ref, 'refs/tags/') permissions: @@ -190,8 +203,6 @@ jobs: with: name: libs path: libs - pattern: libs-* - merge-multiple: true - name: create checksums working-directory: libs