-
Notifications
You must be signed in to change notification settings - Fork 13
51 lines (42 loc) · 1.26 KB
/
deploy-byteInspire.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
40
41
42
43
44
45
46
47
48
49
50
51
name: Deploy to ByteInspire Cloud project
on:
push:
branches:
- release
jobs:
build_and_deploy_server:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: byteinspire deploy
uses: byteinspire/cloud-project-deployer-action@v1.0.2
with:
service-id: '${{ secrets.SERVICE_ID }}'
token: '${{ secrets.ACCESS_TOKEN }}'
directory: ./packages/server/main-server
build_and_deploy_application:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Node.js 12.x
uses: actions/setup-node@v2
with:
node-version: 12.x
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 6
- name: Install Dependencies
run: pnpm install --no-frozen-lockfile
- name: Build Package
run: pnpm run build:all
- name: byteinspire deploy
uses: byteinspire/hosting-deployer-action@v1
with:
service-id: '${{ secrets.SERVICE_ID }}'
token: '${{ secrets.ACCESS_TOKEN }}'
directory: ./packages/application/main-application/dist