-
Notifications
You must be signed in to change notification settings - Fork 0
113 lines (102 loc) · 2.94 KB
/
production.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
name: Build, test and release production
on:
push:
branches:
- master
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14.17
- name: Install eslint
run: npm install eslint
- name: Run lint
run: npm run lint
build-and-test:
runs-on: ubuntu-20.04
needs: lint
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Test
run: npm run test
publish:
runs-on: ubuntu-latest
needs: [lint, build-and-test]
steps:
- uses: actions/checkout@v3
- name: Build image
id: build-image
uses: redhat-actions/buildah-build@v2
with:
image: suoritustarkistin
tags: production ${{ github.sha }}
containerfiles: |
./Dockerfile
build-args: |
BASE_PATH=/suoritustarkistin/
NODE_ENV=production
- name: Push to quay.io
uses: redhat-actions/push-to-registry@v2
with:
image: ${{ steps.build-image.outputs.image }}
tags: ${{ steps.build-image.outputs.tags }}
registry: quay.io/toska
username: toska+github
password: ${{ secrets.QUAY_IO_TOKEN }}
sentry-release:
runs-on: ubuntu-latest
needs: publish
if: success()
steps:
- uses: actions/checkout@v3
- name: Pull image and create a container
run: docker create --name suotar quay.io/toska/suoritustarkistin:production
- name: Copy assets from the container
run: docker cp suotar:/opt/app-root/src ./app
- name: Create Sentry release
uses: getsentry/action-release@v1
env:
SENTRY_URL: https://toska.cs.helsinki.fi/
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_TOKEN }}
SENTRY_ORG: toska
SENTRY_PROJECT: suotar
with:
environment: production
set_commits: 'skip'
sourcemaps: ./app
url_prefix: '~/app'
report_success:
name: 'Report deployment success to Suotar-channel'
runs-on: ubuntu-latest
needs:
- lint
- build-and-test
- publish
- sentry-release
if: success()
steps:
- name: 'Send notification to Slack'
uses: UniversityOfHelsinkiCS/[email protected]
with:
webhook-url: ${{ secrets.SLACKBOT_URL }}
message-type: deployment
softa-url: https://opetushallinto.cs.helsinki.fi/suoritustarkistin/
deployment-target: production
report_failure:
name: 'Report deployment failure to Suotar-channel'
runs-on: ubuntu-latest
needs:
- lint
- build-and-test
- publish
if: failure()
steps:
- name: 'Send notification to Slack'
uses: UniversityOfHelsinkiCS/[email protected]
with:
webhook-url: ${{ secrets.SLACKBOT_URL }}
message-type: deployment-failure