Skip to content

Commit

Permalink
fix artifacts upload and release
Browse files Browse the repository at this point in the history
  • Loading branch information
ggutierrez-sunbright committed Sep 27, 2024
1 parent 5308c71 commit 02b89fd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/build_generic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,5 @@ jobs:
- name: Upload bundle
uses: actions/upload-artifact@v4
with:
name: rdock-${{ inputs.compiler }}-${{ inputs.distribution }}-${{ inputs.arch }}
path: rdock-${{ steps.set_candidate_name.outputs.CANDIDATE_NAME }}.tar.gz
4 changes: 3 additions & 1 deletion .github/workflows/build_matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ jobs:
uses: actions/download-artifact@v4
with:
path: artifacts/
pattern: rdock-*
merge-multiple: true

- name: Set version
id: set_version
Expand All @@ -60,6 +62,6 @@ jobs:
uses: ncipollo/release-action@v1
with:
tag: v${{ steps.set_version.outputs.RELEASE_VERSION }}
artifacts: artifacts/*/*.tar.gz
artifacts: artifacts/*.tar.gz
draft: true

0 comments on commit 02b89fd

Please sign in to comment.