-
Notifications
You must be signed in to change notification settings - Fork 0
95 lines (82 loc) · 2.76 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
name: Production deployment
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
env:
DEPLOYMENT: bso-ui # Must match k8s deployment name
DEPLOYMENT_NAMESPACE: bso # Must match k8s deployment namespace
DEPLOYMENT_URL: https://bso.dataesr.ovh
MM_NOTIFICATION_CHANNEL: bots
jobs:
publish-ghcr:
name: Publish Docker image
runs-on: ubuntu-latest
steps:
- name: 🏁 Checkout
uses: actions/checkout@v4
- name: 🏷️ Get tag
id: tag
run: echo "tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
- name: 🔑 Login ghcr.io
run: docker login ghcr.io -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }}
- name: 🐋 Build Docker image
run: |
IMAGE_ID=ghcr.io/${{ github.repository }}
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
docker build -t $IMAGE_ID:${{ steps.tag.outputs.tag }} -t $IMAGE_ID:latest --build-arg REACT_APP_OPENDATASOFT_API_KEY=${{ secrets.REACT_APP_OPENDATASOFT_API_KEY }} .
- name: 📦 Push Docker image
run: |
IMAGE_ID=ghcr.io/${{ github.repository }}
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
docker push -a $IMAGE_ID
release:
name: Create new Github release
runs-on: ubuntu-latest
needs: publish-ghcr
steps:
- name: 🏁 Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: 🏷️ Get tag
id: tag
run: echo "tag=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
- name: Create changelog text
id: changelog
uses: loopwerk/tag-changelog@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
config_file: .github/config/changelog.js
- name: 📦 Create release
uses: softprops/action-gh-release@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
body: "${{ steps.changelog.outputs.changes }}"
name: ${{ steps.tag.outputs.tag }}
tag_name: ${{ steps.tag.outputs.tag }}
deploy:
name: Update production deployment
runs-on: ubuntu-latest
needs: release
steps:
- name: Deploy to Cluster
id: kubectl-deploy
uses: dataesr/kubectl-deploy@v1.1
env:
KUBE_CONFIG: ${{ secrets.KUBE_CONFIG_DOAD_PROD }}
with:
namespace: ${{ env.DEPLOYMENT_NAMESPACE }}
restart: ${{ env.DEPLOYMENT }}
notify:
needs: deploy
if: always()
runs-on: ubuntu-latest
steps:
- uses: dataesr/mm-notifier-action@v1.0.2
with:
deployment_url: ${{ env.DEPLOYMENT_URL }}
github_token: ${{ secrets.GITHUB_TOKEN}}
mattermost_channel: ${{ env.MM_NOTIFICATION_CHANNEL}}
mattermost_webhook_url: ${{ secrets.MATTERMOST_WEBHOOK_URL }}