forked from ringcentral/slate
-
Notifications
You must be signed in to change notification settings - Fork 0
63 lines (52 loc) · 1.6 KB
/
test_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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: Deploy
on:
push:
branches:
- 'test'
jobs:
deploy:
permissions:
contents: write
runs-on: ubuntu-latest
env:
ruby-version: 2.6
steps:
- uses: actions/checkout@v2
- name: Install doctl
uses: digitalocean/action-doctl@v2
with:
token: ${{ secrets.DIGITALOCEAN_ACCESS_TOKEN }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Set up s3cmd
run: |
python -m pip install --upgrade pip
pip install s3cmd
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ env.ruby-version }}
- uses: actions/cache@v2
with:
path: vendor/bundle
key: gems-${{ runner.os }}-${{ env.ruby-version }}-${{ hashFiles('**/Gemfile.lock') }}
restore-keys: |
gems-${{ runner.os }}-${{ env.ruby-version }}-
gems-${{ runner.os }}-
- run: bundle config set deployment 'true'
- name: bundle install
run: |
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
- run: bundle exec middleman build
- name: sync folder with cdn
env:
AWS_ACCESS_KEY_ID: ${{ secrets.CDN_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.CDN_SECRET_ACCESS_KEY }}
run: |
s3cmd -c ./do/.s3cfg sync --acl-public ./build/ --delete-removed s3://api-docs-test --no-preserve --no-mime-magic --guess-mime-type -v
- name: purge cdn cache
run: |
doctl compute cdn flush ad8cf717-75a6-4994-870c-03148b36af2f