Skip to content

Commit fa13d84

Browse files
committed
action added
1 parent e17d3bf commit fa13d84

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/release.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: 🚀 tailgrids react release
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
release:
11+
name: 🚀 tailgrids react release
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: 📚 checkout
15+
uses: actions/checkout@v2
16+
- name: 🟢 node
17+
uses: actions/setup-node@v2
18+
with:
19+
node-version: 12
20+
registry-url: https://registry.npmjs.org
21+
- name: installing packages
22+
run: npm ci
23+
- name: 🚀 publish
24+
run: npm publish --access public
25+
env:
26+
NODE_AUTH_TOKEN: ${{secrets.NPM_AUTH_TOKEN_TAILGRIDSREACT}}

0 commit comments

Comments
 (0)