Skip to content

Commit

Permalink
fix: fixes release artifact collection (#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
jmgilman authored Jan 5, 2024
1 parent 611a2b4 commit 687e9fa
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,11 @@ jobs:
path: artifacts
- name: Collect artifacts
id: collect
run: echo "artifacts=$(find artifacts -type f -name '*.tar.gz')" >> $GITHUB_OUTPUT
run: |
ARTIFACT_PATHS=$(find artifacts -type f -name '*.tar.gz')
echo "artifacts<<EOF" >> $GITHUB_OUTPUT
echo "$ARTIFACT_PATHS" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
- name: Create release
uses: softprops/action-gh-release@v1
with:
Expand Down

0 comments on commit 687e9fa

Please sign in to comment.