-
Notifications
You must be signed in to change notification settings - Fork 0
98 lines (77 loc) · 2.46 KB
/
ci.yaml
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
name: Run tests and deploy the application
on:
push:
branches:
- "**"
tags:
- "v*.*.*"
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up NodeJS
uses: actions/setup-node@v2
with:
node-version: "16"
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test
backend-docker-image:
runs-on: ubuntu-latest
needs:
- test
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to GitHub Container Registry
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker meta
uses: zazuko/action-docker-meta@main
id: docker_meta
with:
images: ghcr.io/zazuko/barnard59-steps-playground
include-pipeline-id: true
- name: Build and push Docker images
id: docker_build
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
deploy-frontend-on-pages:
runs-on: ubuntu-latest
needs:
- test
# only deploy for the "main" branch
if: github.ref == 'refs/heads/main'
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up NodeJS
uses: actions/setup-node@v2
with:
node-version: "16"
- name: Replace hard-coded backend URL with the deployed instance
run: grep -rl "process.env.PUBLIC_BASE_URL" . --exclude-dir=.git --exclude-dir=.github | xargs sed -i 's|process\.env\.PUBLIC_BASE_URL|"https://barnard59-steps-playground-backend.zazukoians.org"|g'
- name: Install dependencies
run: npm ci
- name: Build static assets
run: npm run build
- name: Create CNAME file
run: echo "barnard59-steps-playground.zazukoians.org" > dist/CNAME
- name: Deploy to GitHub Pages
uses: JamesIves/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: dist # The folder the action should deploy.