Skip to content

Commit 8c1bd89

Browse files
committed
remove tee to avoid silent failures
1 parent 4fc0574 commit 8c1bd89

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
run: npm pack
7676

7777
- name: Publish to npm
78-
run: npm publish --access public 2>&1 | tee -a "$GITHUB_STEP_SUMMARY"
78+
run: npm publish --access public
7979

8080
- name: Determine previous release tag
8181
id: previous_tag
@@ -111,4 +111,4 @@ jobs:
111111
RELEASE_ARGS+=(--notes-start-tag "$PREVIOUS_TAG")
112112
fi
113113
114-
gh release create "${RELEASE_ARGS[@]}" 2>&1 | tee -a "$GITHUB_STEP_SUMMARY"
114+
gh release create "${RELEASE_ARGS[@]}" 2>&1 >> "$GITHUB_STEP_SUMMARY"

0 commit comments

Comments
 (0)