Skip to content

Commit 69689d5

Browse files
Merge pull request #12 from SimformSolutionsPvtLtd/develop
Release v1.0.0
2 parents d99d714 + 7e12420 commit 69689d5

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/publish.yml

+8-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,14 @@ jobs:
1717
with:
1818
node-version: 18
1919
registry-url: https://registry.npmjs.org
20+
- name: 🧶 Print Yarn Version
21+
run: yarn --version
2022
- name: 🚀 Build & Publish
21-
run: yarn install && yarn build && yarn npm publish --access public
23+
run: |
24+
yarn config set npmAlwaysAuth true
25+
yarn config set npmAuthToken "${NODE_AUTH_TOKEN}"
26+
yarn install
27+
yarn build
28+
yarn npm publish --access public
2229
env:
2330
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}

0 commit comments

Comments
 (0)