-
Notifications
You must be signed in to change notification settings - Fork 0
117 lines (113 loc) · 4.97 KB
/
release.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
114
115
116
117
# ----------------------------------------------------------------------------
# Copyright (C) 2021-2022 Deepchecks (https://www.deepchecks.com)
#
# This file is part of Deepchecks.
# Deepchecks is distributed under the terms of the GNU Affero General
# Public License (version 3 or later).
# You should have received a copy of the GNU Affero General Public License
# along with Deepchecks. If not, see <http://www.gnu.org/licenses/>.
# ----------------------------------------------------------------------------
#
name: Release
on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"
env:
DISABLE_DEEPCHECKS_ANONYMOUS_TELEMETRY: "true"
jobs:
release:
runs-on: ubuntu-latest
if: "!github.event.pull_request.draft"
steps:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: eu-west-1
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v1
- name: Configure AWS credentials (Public)
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-east-1
- name: Login to Amazon ECR Public
id: login-ecr-public
uses: aws-actions/amazon-ecr-login@v1
with:
registry-type: public
- name: Set TAG env var
run: |
echo "TAG=$(echo -n "${{ github.event.ref }}" | cut -d '/' -f3)" >> $GITHUB_ENV
- name: Tag image as latest-release - private
run: |
docker buildx imagetools create \
--tag ${{ secrets.MON_IMAGE_NAME }}:$(echo -n "${{ github.event.ref }}" | cut -d '/' -f3) \
${{ secrets.MON_IMAGE_NAME }}:${{ github.sha }}
- name: Tag image as latest-release - public
run: |
docker buildx imagetools create \
--tag ${{ secrets.PUBLIC_IMAGE_NAME }}:$(echo -n "${{ github.event.ref }}" | cut -d '/' -f3) \
--tag ${{ secrets.PUBLIC_IMAGE_NAME }}:latest-release \
${{ secrets.PUBLIC_IMAGE_NAME }}:${{ github.sha }}
- name: Logout from Amazon ECR
if: always()
run: |
docker logout ${{ steps.login-ecr.outputs.registry }}
docker logout ${{ steps.login-ecr-public.outputs.registry }}
update-demo-task-definition:
runs-on: ubuntu-latest
needs: release
steps:
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: eu-west-1
- name: Download task definition
run: |
aws ecs describe-task-definition --task-definition mon-commercial-staging --query taskDefinition > task-definition.json
- name: Set TAG env var
run: |
echo "TAG=$(echo -n "${{ github.event.ref }}" | cut -d '/' -f3)" >> $GITHUB_ENV
- name: Fill in the new image ID in the Amazon ECS task definition - app
id: render-app-container
uses: aws-actions/amazon-ecs-render-task-definition@v1
with:
task-definition: task-definition.json
container-name: app
image: ${{ secrets.MON_IMAGE_NAME }}:${{ env.TAG }}
- name: Fill in the new image ID in the Amazon ECS task definition - alert-scheduler
id: render-alert-scheduler-container
uses: aws-actions/amazon-ecs-render-task-definition@v1
with:
task-definition: ${{ steps.render-app-container.outputs.task-definition }}
container-name: alert-scheduler
image: ${{ secrets.MON_IMAGE_NAME }}:${{ env.TAG }}
- name: Fill in the new image ID in the Amazon ECS task definition - task queuer
id: render-task-queuer-container
uses: aws-actions/amazon-ecs-render-task-definition@v1
with:
task-definition: ${{ steps.render-alert-scheduler-container.outputs.task-definition }}
container-name: task-queuer
image: ${{ secrets.MON_IMAGE_NAME }}:${{ env.TAG }}
- name: Fill in the new image ID in the Amazon ECS task definition - task runner
id: render-task-runner-container
uses: aws-actions/amazon-ecs-render-task-definition@v1
with:
task-definition: ${{ steps.render-task-queuer-container.outputs.task-definition }}
container-name: task-runner
image: ${{ secrets.MON_IMAGE_NAME }}:${{ env.TAG }}
- name: Deploy Amazon ECS task definition
uses: aws-actions/amazon-ecs-deploy-task-definition@v1
with:
task-definition: ${{ steps.render-task-runner-container.outputs.task-definition }}
service: demo
cluster: DevMonitoring