forked from cryostatio/cryostat-web
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (36 loc) · 998 Bytes
/
ci-preview.yml
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
name: Generate Preview (CI)
concurrency:
group: ci
cancel-in-progress: true
on:
workflow_dispatch:
push:
branches:
- main
- v[0-9]+
- v[0-9]+.[0-9]+
- cryostat-v[0-9]+.[0-9]+
paths:
- 'src/**'
- '!src/test/**'
- 'webpack.*.js'
- 'yarn.lock'
- 'tsconfig.json'
jobs:
build-preview:
if: ${{ github.repository_owner == 'cryostatio' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 18
uses: actions/setup-node@v2
with:
node-version: 18
- uses: bahmutov/npm-install@v1
- name: Build assets
run: yarn build:preview:notests
- name: Publish to surge
run: |
FORMATTED_REF="$(echo ${{ github.ref_name }} | sed 's/\.//')"
DEPLOY_DOMAIN="${{ github.repository_owner }}-${{ github.event.repository.name }}-$FORMATTED_REF.surge.sh"
npx surge --project ./dist --domain $DEPLOY_DOMAIN --token ${{ secrets.SURGE_TOKEN }}