Foundations for Warnings System (#161) #95
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: Docker build and publish | |
on: | |
push: | |
branches: main | |
env: | |
ECR_REPO: 'public.ecr.aws/s5s3h4s7' | |
jobs: | |
publish: | |
name: Publish Docker image | |
runs-on: ubuntu-latest | |
if: ${{ github.event_name != 'pull_request' }} | |
steps: | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v1 | |
with: | |
aws-access-key-id: ${{ secrets.ECR_ACCESS_KEY_ID }} | |
aws-secret-access-key: ${{ secrets.ECR_SECRET_ACCESS_KEY }} | |
aws-region: us-east-1 | |
- name: Login to Amazon ECR | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v1 | |
with: | |
registry-type: public | |
- name: Get branch name | |
uses: nelonoel/[email protected] | |
- name: Set ENV | |
run: | | |
echo "BUILD_NUMBER=$GITHUB_RUN_ID" >> $GITHUB_ENV | |
echo "BRANCH=$BRANCH_NAME" >> $GITHUB_ENV | |
- uses: actions/checkout@v2 | |
- name: Use Node.js 20.x | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 20.x | |
- name: Build and push cht-user-management image | |
run: npm run publish:cht-user-management | |
- name: Build and push cht-user-management-worker image | |
run: npm run publish:cht-user-management-worker |