Skip to content

Commit

Permalink
diagnostics
Browse files Browse the repository at this point in the history
  • Loading branch information
dherman committed Mar 4, 2024
1 parent 3eb2d70 commit 0c1240d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,16 @@ jobs:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
for p in *.tgz ; do
echo "UNPACKING: $p"
ls -al ./$p
mkdir -p tmp-unpack
cd tmp-unpack
cp ../$p ./
tar xzf $p
ls -al ./package
cat ./package/package.json
cd ..
rm -rf tmp-unpack
npm publish --access public ./$p
done
working-directory: ./pkgs/cargo-messages/dist
Expand Down

0 comments on commit 0c1240d

Please sign in to comment.