Skip to content

Commit 933e793

Browse files
authored
Merge pull request #58 from jairo-bc/STRF-9311
STRF-9311 Release stencil styles through github release
2 parents b3b2dcb + 239f143 commit 933e793

3 files changed

Lines changed: 5562 additions & 1400 deletions

File tree

.github/workflows/release.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Stencil Styles
2+
on:
3+
release:
4+
types: [created]
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
- uses: actions/setup-node@v2
11+
with:
12+
node-version: '12.x'
13+
- run: npm ci
14+
# Setup .npmrc file to publish to npm registry
15+
- run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> ~/.npmrc
16+
- run: npm publish

0 commit comments

Comments
 (0)