From ae6d70f3278189c0c630ec80357061a3e7ecfcbe Mon Sep 17 00:00:00 2001 From: Tyler Date: Thu, 25 Jan 2024 08:55:12 -0700 Subject: [PATCH] install dependencies before running publish command (#35) Signed-off-by: Tyler McDonald --- .github/workflows/prettier.yml | 2 +- .github/workflows/publish.yml | 3 +++ package.json | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml index 81c0caca..d31b0e94 100644 --- a/.github/workflows/prettier.yml +++ b/.github/workflows/prettier.yml @@ -3,7 +3,7 @@ name: Prettier on: push: pull_request: - + permissions: contents: read diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 843fb61a..ff59ff80 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -20,6 +20,9 @@ jobs: with: node-version: 18.x + - name: Install dependencies + run: npm install + - name: Publish run: npm publish --public env: diff --git a/package.json b/package.json index b1ccd68b..446ca344 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@hashgraph/hedera-wallet-connect", - "version": "1.0.1", + "version": "1.0.2", "description": "A library to facilitate integrating Hedera with WalletConnect", "repository": { "type": "git",