[CD] Backend update v0.0.13 on alpha #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: '[CD] Backend update' | |
run-name: '[CD] Backend update ${{ inputs.VERSION }} on ${{ inputs.APP_ENV }}' # TODO: add parameters to name | |
on: | |
workflow_dispatch: | |
inputs: | |
VERSION: | |
required: true | |
description: 'Git tag to deploy (e.g. v1.2.3)' | |
APP_ENV: | |
required: true | |
description: 'App env name (e.g. alpha)' | |
jobs: | |
pre-update: | |
name: "Pre-update" | |
permissions: | |
id-token: write | |
contents: read | |
runs-on: ubuntu-latest | |
steps: | |
# Switch to role auth | |
- 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: ${{ secrets.AWS_DEFAULT_REGION }} | |
- uses: actions/checkout@v4 | |
- name: Run the pre-update command | |
uses: ./packages/ecr-run-task | |
with: | |
BASE_ENV: dev | |
APP_ENV: ${{ inputs.APP_ENV }} | |
VERSION: ${{ inputs.VERSION }} | |
ECR_REPO: backend | |
CONTAINER_NAME: update |