This repository has been archived by the owner on Sep 4, 2024. It is now read-only.
Merge branch 'main' into vlad/ora-190-ensure-all-repos-are-deployable… #6
Workflow file for this run
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
# This workflow will build and push a new container image to Amazon ECR, | |
# and then will deploy a new task definition to Amazon ECS which will be run by Fargate when a release is created | |
name: Build and Push docker image to ECR | |
on: | |
push: | |
branches: | |
- staging | |
- vlad/ora-190-ensure-all-repos-are-deployable-on-aws-cloud-with-a-merge | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
deploy-staging: | |
name: Build and Push docker image | |
runs-on: ubuntu-latest | |
environment: staging | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v2 | |
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 | |
id: login-ecr | |
uses: aws-actions/amazon-ecr-login@v1 | |
- name: Build, tag, and push image to Amazon ECR | |
id: compute-node-build-image | |
env: | |
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} | |
ECR_REPOSITORY: upshot-compute-node-staging | |
IMAGE_TAG: ${{ github.sha }} | |
run: | | |
# Build a docker container and push it to ECR so that it can be deployed to ECS. | |
# To build it with particular BLS_EXTENSION version pass --build-arg "BLS_EXTENSION_VER=RELEASE_NAME" | |
# If BLS_EXTENSION_VER is not passed will be built with the latest available version | |
docker build -f docker/Dockerfile \ | |
--build-arg "GH_TOKEN=${{ secrets.GHCR_TOKEN }}" \ | |
-t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG . | |
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG | |
echo "image=$ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG" >> "$GITHUB_OUTPUT" | |
# Tag and push with latest | |
docker tag $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG $ECR_REGISTRY/$ECR_REPOSITORY:latest | |
docker push $ECR_REGISTRY/$ECR_REPOSITORY:latest | |