-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SK-1811 workflow file for beta release
- Loading branch information
1 parent
620a49b
commit 4265460
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Public Release | ||
|
||
on: | ||
push: | ||
tags: '*.*.*-beta.*' | ||
paths-ignore: | ||
- "package.json" | ||
- "package-lock.json" | ||
- "*.md" | ||
|
||
|
||
jobs: | ||
build-sdk: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: 14.17.6 | ||
registry-url: 'https://registry.npmjs.org' | ||
- run: npm install | ||
|
||
- name: Build | ||
run: npm run build | ||
|
||
- name: publish to npm | ||
run: npm publish --tag beta | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |