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 08299e6Copy full SHA for 08299e6
1 file changed
.github/workflows/node.yml
@@ -80,11 +80,14 @@ 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: |
84
+ {
85
+ printf 'meta<<\0\n'
86
+ npm -w "@reforged/${{ matrix.pkg }}" pack --json
87
+ printf '\0\n'
88
+ } >> "$GITHUB_OUTPUT"
89
- name: Upload package as artifact
90
uses: actions/upload-artifact@v4
- env:
- test: "foo"
91
with:
92
name: reforged-${{ matrix.pkg }}
93
path: ${{ fromJson(steps.pack.outputs.meta)[0].filename }}
0 commit comments