-
Notifications
You must be signed in to change notification settings - Fork 176
51 lines (51 loc) · 1.97 KB
/
deploy-on-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
name: Deploy Image on GitHub Release
on:
release:
types: [created]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.CI_CD_AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.CI_CD_AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ secrets.AWS_DEFAULT_REGION }}
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v2
- name: Build and Push Sidekiq image
uses: docker/build-push-action@v5
with:
push: true
file: ./Dockerfile.sidekiq
tags: |
${{ steps.login-ecr.outputs.registry }}/wca-on-rails:sidekiq-production
${{ steps.login-ecr.outputs.registry }}/wca-on-rails:sidekiq-staging
cache-from: type=gha
cache-to: type=gha,mode=max
# this will trigger the deployment pipeline for prod
- name: Build and push Prod Image
uses: docker/build-push-action@v5
with:
push: true
tags: |
${{ steps.login-ecr.outputs.registry }}/wca-on-rails:latest
${{ steps.login-ecr.outputs.registry }}/wca-on-rails:staging
cache-from: type=gha
cache-to: type=gha,mode=max
build-args: |
BUILD_TAG=${{ github.sha }}
# Replace the old sidekiq image with the new one
- name: Deploy Sidekiq
run: |
aws ecs update-service --cluster wca-on-rails --service wca-on-rails-prod-auxiliary-services --force-new-deployment
# There is no pipeline for staging so we manually force to update the image
- name: Deploy staging
run: |
aws ecs update-service --cluster wca-on-rails --service wca-on-rails-staging --force-new-deployment