generated from ApollosProject/apollos-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (39 loc) · 1.14 KB
/
deploy.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
name: Deploy
on:
push:
branches: [master]
jobs:
ios:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v2
with:
node-version-file: '.nvmrc'
- uses: ruby/setup-ruby@v1
- run: npm i -g @apollosproject/cli
- run: apollos secrets -d ${{ secrets.ENCRYPTION_PASSWORD }}
- run: cp .env.shared .env
- run: yarn config set network-timeout 300000
- run: yarn
- run: node ./scripts/get-introspection-data.js
- run: apollos mobile deploy ios publish
android:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-node@v2
with:
node-version-file: '.nvmrc'
- uses: ruby/setup-ruby@v1
- run: npm i -g @apollosproject/cli
- run: apollos secrets -d ${{ secrets.ENCRYPTION_PASSWORD }}
- run: cp .env.shared .env
- run: yarn config set network-timeout 300000
- run: yarn
- run: node ./scripts/get-introspection-data.js
- run: apollos mobile deploy android publish