Skip to content

Commit

Permalink
fixup! fixup! fixup! gha: Add release tooling for Rust artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
cdecker committed Nov 6, 2023
1 parent 43e16d4 commit 2d92e2e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,13 +122,12 @@ jobs:
# inconsistent syntax between shell and powershell.
shell: bash
run: |
cd libs
# Parse out what we just built and upload it to the Github Release™
echo "paths<<EOF" >> "$GITHUB_OUTPUT"
jq --raw-output ".artifacts[]?.path | select( . != null )" dist-manifest.json >> "$GITHUB_OUTPUT"
jq --raw-output ".artifacts[]?.path | select( . != null )" libs/dist-manifest.json >> "$GITHUB_OUTPUT"
echo "EOF" >> "$GITHUB_OUTPUT"
cp dist-manifest.json "$BUILD_MANIFEST_NAME"
cp libs/dist-manifest.json "$BUILD_MANIFEST_NAME"
- name: "Upload artifacts"
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 2d92e2e

Please sign in to comment.