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 5bf59b6 commit 3084b4cCopy full SHA for 3084b4c
.github/workflows/publish_npm.yml
@@ -75,11 +75,14 @@ jobs:
75
- name: Pre upload validation
76
id: pack
77
run: |
78
- pnpm publish --dry-run --no-git-checks> output 2>&1
+ pnpm publish --dry-run --no-git-checks> report 2>&1
79
PRE_UPLOAD_HASH=$(grep 'shasum' output | awk '{print $NF}')
80
echo "PRE_UPLOAD_HASH=$PRE_UPLOAD_HASH" >> $GITHUB_OUTPUT
81
echo "PRE_UPLOAD_HASH: $PRE_UPLOAD_HASH"
82
83
+ echo "Removing temporary report file"
84
+ rm report
85
+
86
- name: Check if version is already published
87
88
PACKAGE_NAME=$(cat package.json | jq -r .name)
0 commit comments