Skip to content

Commit 08299e6

Browse files
committed
ci: Minor refactorings.
1 parent df288b2 commit 08299e6

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/node.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,14 @@ jobs:
8080
# Create package & publish it as artifact for inspection
8181
- name: Create package tarball
8282
id: pack
83-
run: echo "meta=$(npm -w @reforged/${{ matrix.pkg }} pack --json | tr -d ' \n')" >> "$GITHUB_OUTPUT"
83+
run: |
84+
{
85+
printf 'meta<<\0\n'
86+
npm -w "@reforged/${{ matrix.pkg }}" pack --json
87+
printf '\0\n'
88+
} >> "$GITHUB_OUTPUT"
8489
- name: Upload package as artifact
8590
uses: actions/upload-artifact@v4
86-
env:
87-
test: "foo"
8891
with:
8992
name: reforged-${{ matrix.pkg }}
9093
path: ${{ fromJson(steps.pack.outputs.meta)[0].filename }}

0 commit comments

Comments
 (0)