We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df288b2 commit dd90a9cCopy full SHA for dd90a9c
1 file changed
.github/workflows/node.yml
@@ -80,11 +80,9 @@ jobs:
80
# Create package & publish it as artifact for inspection
81
- name: Create package tarball
82
id: pack
83
- run: echo "meta=$(npm -w @reforged/${{ matrix.pkg }} pack --json | tr -d ' \n')" >> "$GITHUB_OUTPUT"
+ run: printf 'meta<<\0%s\0\n' "$(npm -w @reforged/${{ matrix.pkg }} pack --json)" >> "$GITHUB_OUTPUT"
84
- name: Upload package as artifact
85
uses: actions/upload-artifact@v4
86
- env:
87
- test: "foo"
88
with:
89
name: reforged-${{ matrix.pkg }}
90
path: ${{ fromJson(steps.pack.outputs.meta)[0].filename }}
0 commit comments