-
-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Updated prod_settings databases * Testing GH Actions * Testing GH Actions * Testing GH Actions * Testing GH Actions * Testing GH Actions * Testing GH Actions * Testing GH Actions * Changed to "release" * Ran black formatter * Setting to "latest" for now * Now only on tags (not just releases), and push two versions (latest and version) * ran black formatter
- Loading branch information
Showing
2 changed files
with
79 additions
and
7 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
name: Deploy Release to ECR | ||
on: | ||
# release: | ||
push: | ||
tags: | ||
- '*' | ||
workflow_dispatch: # Allow manual invocation of the workflow | ||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
# These permissions are needed to interact with GitHub's OIDC Token endpoint. | ||
permissions: | ||
id-token: write | ||
contents: read | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
with: | ||
persist-credentials: false | ||
|
||
- name: Get the tag version | ||
id: get_version | ||
run: echo ::set-output name=TAG_NAME::${GITHUB_REF/refs\/tags\//} | ||
|
||
- name: Configure AWS credentials | ||
id: aws-credentials | ||
uses: aws-actions/configure-aws-credentials@v4 | ||
with: | ||
# role-to-assume: ${{ secrets.AWS_ASSUME_ROLE_ARN }} | ||
aws-region: "us-east-1" | ||
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} | ||
|
||
- name: Login to Amazon ECR | ||
id: login-ecr | ||
uses: aws-actions/amazon-ecr-login@v2 | ||
with: | ||
registry-type: public | ||
|
||
- name: Build, tag, and push image to Amazon ECR | ||
id: build-image | ||
env: | ||
ECR_REGISTRY: ${{ steps.login-ecr.outputs.registry }} | ||
ECR_REPOSITORY: ${{ secrets.ECR_REPOSITORY }} | ||
IMAGE_TAG: ${{ steps.get_version.outputs.TAG_NAME }} #${{ github.sha }} | ||
run: | | ||
cp infrastructure/backend/Dockerfile ./Dockerfile | ||
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG . | ||
docker push $ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG | ||
echo "::set-output name=image::$ECR_REGISTRY/$ECR_REPOSITORY:$IMAGE_TAG" | ||
docker build -t $ECR_REGISTRY/$ECR_REPOSITORY:latest . | ||
docker push $ECR_REGISTRY/$ECR_REPOSITORY:latest | ||
echo "::set-output name=latest_image::$ECR_REGISTRY/$ECR_REPOSITORY:latest" |
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