-
Notifications
You must be signed in to change notification settings - Fork 0
65 lines (56 loc) · 1.9 KB
/
seo.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
# This workflow will do a clean install of node dependencies, build the source code and run tests
name: 'SEO'
on:
push:
branches: [main]
workflow_dispatch:
schedule:
- cron: '0 1 * * *'
jobs:
deploy-production:
name: 'Generate SEO files'
runs-on: ubuntu-latest
strategy:
matrix:
include:
- environment: production-01
host: SSH_HOST_PRODUCTION_01
- environment: production-02
host: SSH_HOST_PRODUCTION_02
- environment: production-03
host: SSH_HOST_PRODUCTION_03
steps:
- uses: actions/checkout@v3
- name: Set up SSH
run: |
mkdir -p ~/.ssh/
echo "$SSH_PRIVATE_KEY" > ./deploy.key
sudo chmod 600 ./deploy.key
ssh-keyscan -H $SSH_HOST >> ~/.ssh/known_hosts
shell: bash
env:
SSH_PRIVATE_KEY: ${{secrets.SSH_MACHINE_USER_PRIVATE_KEY}}
SSH_HOST: ${{ secrets[matrix.host] }}
- name: Deploy to production
run: ssh -v -i ./deploy.key www-data@$SSH_HOST '/opt/docker/app/sitemap/deploy.sh >> /var/log/cron_build_sitemap'
env:
SSH_HOST: ${{ secrets[matrix.host] }}
- name: Notify failure only
if: failure()
uses: ./.github/actions/notify
with:
message: '🚨 ${{ github.event.repository.name }} : deploy SEO files to production failed'
hook: ${{ secrets.TCHAP_HOOK }}
id: ${{ secrets.TCHAP_ROOM_ID }}
notify-deploy-success:
name: Notify successful deployment
runs-on: ubuntu-latest
needs: [deploy-production]
steps:
- uses: actions/checkout@v3
- name: Notify deploy succes
uses: ./.github/actions/notify
with:
message: '✅ ${{ github.event.repository.name }} : successfully deploy SEO files to production'
hook: ${{ secrets.TCHAP_HOOK }}
id: ${{ secrets.TCHAP_ROOM_ID }}