-
Notifications
You must be signed in to change notification settings - Fork 4
85 lines (73 loc) · 2.72 KB
/
build-jibhat.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
# Copyright (C) 2020 Really Awesome Technology Ltd
#
# This file is part of RACTF.
#
# RACTF is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# RACTF is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with RACTF. If not, see <https:#www.gnu.org/licenses/>.
name: Build (Jibhat)
on:
repository_dispatch:
types: [production_build_deploy]
workflow_dispatch: null
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
submodules: true
- uses: pnpm/[email protected]
with:
version: 6.20.3
- name: Use Node.js 14
uses: actions/setup-node@v1
with:
node-version: 14.x
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile --shamefully-hoist
- name: Run Build
run: pnpm run build
env:
CI: "false"
RACTF_API_DOMAIN: https://api-jibhat.ractf.co.uk
RACTF_API_BASE: /api/v2
RACTF_WSS_URL: wss://api-jibhat.ractf.co.uk/api/v2/ws/
RACTF_SENTRY_DSN: https://[email protected]/1815863
RACTF_GA_UA: XXX
REACT_APP_MAP_PROVIDER: ${{ secrets.REACT_APP_MAP_PROVIDER }}
- name: Install Sentry CLI
run: curl -sL https://sentry.io/get-cli/ | bash
- name: Publish Sentry Release
run: >-
VERSION=$(sentry-cli releases propose-version) &&
sentry-cli releases new $VERSION &&
sentry-cli releases set-commits --auto $VERSION &&
sentry-cli releases files $VERSION upload-sourcemaps build &&
sentry-cli releases finalize $VERSION
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
SENTRY_ORG: ractf
SENTRY_PROJECT: frontend
- name: Clear Sourcemaps
run: find . -type f -name '*.map' -delete
- uses: jakejarvis/s3-sync-action@master
with:
args: --acl public-read --follow-symlinks
env:
AWS_S3_BUCKET: ${{ secrets.AWS_S3_BUCKET_JIBHAT }}
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_REGION: 'eu-west-2'
SOURCE_DIR: 'build'