forked from hotosm/fAIr
-
Notifications
You must be signed in to change notification settings - Fork 0
76 lines (62 loc) · 2.03 KB
/
frontend_build_push.yml
File metadata and controls
76 lines (62 loc) · 2.03 KB
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
name: Frontend Build and upload to S3
on:
release:
types: [released]
workflow_dispatch:
permissions:
id-token: write
contents: read
jobs:
frontend-unit-test:
uses: hotosm/gh-workflows/.github/workflows/test_pnpm.yml@3.2.0
with:
working_dir: frontend
build_and_upload:
runs-on: ubuntu-latest
needs: [frontend-unit-test]
environment: Production
env:
CI: false
strategy:
matrix:
node-version: [20]
steps:
- name: Check out Git repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Install pnpm
run: npm install -g pnpm
- name: Cache pnpm store
uses: actions/cache@v4
id: pnpm-cache
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-pnpm-${{ hashFiles('frontend/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-
- name: Install Node.js dependencies
if: steps.pnpm-cache.outputs.cache-hit != 'true'
working-directory: ./frontend
run: pnpm install --frozen-lockfile
- name: Build frontend
working-directory: ./frontend
run: pnpm run build
env:
VITE_BASE_API_URL: ${{ vars.VITE_BASE_API_URL }}
VITE_MATOMO_ID: ${{ vars.VITE_MATOMO_ID }}
VITE_MATOMO_APP_DOMAIN: ${{ vars.VITE_MATOMO_APP_DOMAIN }}
VITE_OSM_HASHTAGS: ${{ vars.VITE_OSM_HASHTAGS }}
VITE_FAIR_PREDICTOR_API_URL: ${{ vars.VITE_FAIR_PREDICTOR_API_URL }}
# VITE_MIN_TRAINING_AREA_SIZE: ${{ vars.VITE_MIN_TRAINING_AREA_SIZE }}
- name: Authenticate to AWS
uses: aws-actions/configure-aws-credentials@v4
with:
aws-region: us-east-1
role-to-assume: ${{ secrets.AWS_OIDC_ROLE }}
role-session-name: fAIrGithub
- name: Upload to S3
working-directory: ./frontend/dist
run: aws s3 sync . s3://${{ vars.FRONTEND_BUCKET }}/