Skip to content

Commit fe7ebf1

Browse files
Merge pull request #63 from SimformSolutionsPvtLtd/develop
Release v1.4.2
2 parents 14ac8a4 + 795e4f0 commit fe7ebf1

File tree

2 files changed

+23
-23
lines changed

2 files changed

+23
-23
lines changed

.github/workflows /publish.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

.github/workflows/publish.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: "🚀 Publish"
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
8+
jobs:
9+
release:
10+
name: 🚀 Publish
11+
runs-on: macos-11
12+
steps:
13+
- name: 📚 checkout
14+
uses: actions/checkout@v2.4.2
15+
- name: 🟢 node
16+
uses: actions/setup-node@v3.3.0
17+
with:
18+
node-version: 16
19+
registry-url: https://registry.npmjs.org
20+
- name: 🚀 Build & Publish
21+
run: yarn install && yarn build && yarn publish --access public
22+
env:
23+
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN}}

0 commit comments

Comments
 (0)