Skip to content

Commit dd90a9c

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

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

.github/workflows/node.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,9 @@ 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: printf 'meta<<\0%s\0\n' "$(npm -w @reforged/${{ matrix.pkg }} pack --json)" >> "$GITHUB_OUTPUT"
8484
- name: Upload package as artifact
8585
uses: actions/upload-artifact@v4
86-
env:
87-
test: "foo"
8886
with:
8987
name: reforged-${{ matrix.pkg }}
9088
path: ${{ fromJson(steps.pack.outputs.meta)[0].filename }}

0 commit comments

Comments
 (0)