Skip to content

Commit

Permalink
ci: fix migration to actions/download-artifact@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
eitsupi committed Feb 18, 2024
1 parent d8a6e77 commit c0483bd
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/release-lib.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -190,8 +203,6 @@ jobs:
with:
name: libs
path: libs
pattern: libs-*
merge-multiple: true

- name: create checksums
working-directory: libs
Expand Down

0 comments on commit c0483bd

Please sign in to comment.