Skip to content

Commit

Permalink
Split dry-run to another step
Browse files Browse the repository at this point in the history
  • Loading branch information
hoxbro committed May 1, 2024
1 parent f684c06 commit 9dd30b8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,11 @@ jobs:
run: |
TARBALL=$(pixi run build-npm)
echo "TARBALL=$TARBALL" >> $GITHUB_ENV
npm publish --dry-run $PACKAGE/$TARBALL
- name: npm publish dry-run
run: |
cd $PACKAGE
npm publish --dry-run $TARBALL
cd ..
- uses: actions/upload-artifact@v4
if: always()
with:
Expand Down

0 comments on commit 9dd30b8

Please sign in to comment.