From 649dee41eb734d5675068e9795c5904e50a8bcb9 Mon Sep 17 00:00:00 2001 From: Rajeh Taher Date: Sun, 28 Apr 2024 12:08:50 +0000 Subject: [PATCH] fix(master): fix whiskeysockets publishing --- .github/workflows/publish-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish-release.yml b/.github/workflows/publish-release.yml index 4655819..6a8a367 100644 --- a/.github/workflows/publish-release.yml +++ b/.github/workflows/publish-release.yml @@ -82,8 +82,8 @@ jobs: - name: Publish in NPM (whiskeysockets scope) run: | - json -I -f package.json -e "this.name='@whiskeysockets/baileys'" + npx json -I -f package.json -e "this.name='@whiskeysockets/baileys'" npm publish --access public - json -I -f package.json -e "this.name='baileys'" + npx json -I -f package.json -e "this.name='baileys'" env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}