forked from ApryseSDK/webviewer-ui
-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (32 loc) · 915 Bytes
/
deploy.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Deploy to @uniwise/webviewer-ui npm package
on:
release:
types: [published]
jobs:
publish:
runs-on: self-hosted
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 20.x
registry-url: https://npm.pkg.github.com/
always-auth: true
scope: '@uniwise'
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Run tests
run: |
yarn cp-webviewer-core
yarn jest
- name: Build
run: yarn build
- name: Version
run: yarn version --new-version "${GITHUB_REF:11}" --no-git-tag-version
- name: Publish
run: yarn publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}