-
Notifications
You must be signed in to change notification settings - Fork 0
121 lines (101 loc) · 3.34 KB
/
publish_website.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
###################################################################
# Auto-created by the cicd-actions tool
on: workflow_dispatch
name: Publish to fusebit.io
jobs:
deploy:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Upgrade aws-cli
run: >
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o
"awscliv2.zip"
unzip awscliv2.zip >/dev/null
sudo ./aws/install --update
/usr/local/bin/aws --version
aws --version
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 14.17.2
- name: Cache Node.js modules
uses: actions/cache@v2
with:
path: ~/.npm
key: ${{ runner.OS }}-node
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- name: Cache yarn modules
uses: actions/cache@v2
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Checkout Website
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Checkout Docs
uses: actions/checkout@v2
with:
repository: fivequarters/docs
path: docs
token: ${{ secrets.DOCS_REPO_ACCESS_KEY }}
- name: Setup Environments and Profiles
env:
SECRET_FUSEBIT_PROFILE: ${{secrets.FUSEBIT_STAGE_US_WEST_2}}
SECRET_NPM_TOKEN: ${{secrets.NPM_PUBLISH_TOKEN}}
SECRET_GC_BQ_KEY_BASE64: ${{secrets.FUSEBIT_GC_BQ_KEY_BASE64}}
run: ./scripts/create_env_files.sh
- name: Qualify - aws-cli works
run: aws s3 ls
- name: Build
env:
INTERCOM_APP_ID: v9ncq3ml
BASE_URL: https://fusebit.io
CANONICAL_URL: https://fusebit.io
PORTAL_BASE_URL: https://manage.fusebit.io
run: ./scripts/build_tree.sh
- name: Publish - website
env:
S3_BUCKET: fusebit.io
run: ./scripts/publish_website.sh
- name: Publish - robot.txt
env:
S3_BUCKET: fusebit.io
ROBOTS_FILE: fusebit.io.txt
run: ./scripts/publish_robots.sh
- name: Build and Publish - docs
env:
S3_BUCKET: fusebit.io
run: ./scripts/publish_docs.sh
- name: Invalidate CloudFront
env:
CLOUDFRONT_ID: E25L57ELU5N7RT
run: ./scripts/invalidate_cloudfront.sh
- name: Publish Sitemap
env:
GOOGLE_SEARCH_CONSOLE_JSON_KEY: ${{ secrets.GOOGLE_SEARCH_CONSOLE_JSON_KEY }}
run: ./scripts/publish_sitemap/publish.sh
- name: Notify slack success
if: success()
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_NOTIFICATIONS_BOT_TOKEN }}
uses: voxmedia/github-action-slack-notify-build@v1
with:
channel: pr-review
status: SUCCESS
color: good
- name: Notify slack fail
if: failure()
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_NOTIFICATIONS_BOT_TOKEN }}
uses: voxmedia/github-action-slack-notify-build@v1
with:
channel: pr-review
status: FAILED
color: danger