-
Notifications
You must be signed in to change notification settings - Fork 1
43 lines (39 loc) · 1.18 KB
/
deploy_app.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
name: Deploy to Production
on:
push:
branches:
- master
workflow_dispatch:
jobs:
build_and_push_image:
name: Build and Push Image
uses: zooniverse/ci-cd/.github/workflows/build_and_push_image.yaml@main
with:
repo_name: thumbnailer
commit_id: ${{ github.sha }}
deploy_production:
needs: build_and_push_image
name: Deploy to Production
uses: zooniverse/ci-cd/.github/workflows/deploy_app.yaml@main
with:
app_name: thumbnailer
repo_name: thumbnailer
commit_id: ${{ github.sha }}
environment: production
deploy_check: false
secrets:
creds: ${{ secrets.AZURE_AKS }}
slack_notification:
name: Send Slack notification
uses: zooniverse/ci-cd/.github/workflows/slack_notification.yaml@main
needs: deploy_production
if: always()
with:
commit_id: ${{ github.sha }}
job_name: Deploy to Production / deploy_production
status: ${{ needs.deploy_production.result }}
# Customize the slack message
title: 'Thumbnailer production deploy complete'
title_link: 'thumbnails.zooniverse.org'
secrets:
slack_webhook_url: ${{ secrets.SLACK_WEBHOOK_URL }}