Skip to content

Commit

Permalink
Restores image build/push workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bwhaley committed Jan 3, 2025
1 parent 4334c91 commit 4dc0589
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build

on: push

jobs:
build_and_push_image:
permissions:
id-token: write
contents: read
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ secrets.AWS_ROLE_TO_ASSUME }}
aws-region: ${{ secrets.AWS_REGION }}
- name: Set outputs
id: sha
run: echo "::set-output name=short_sha::$(git rev-parse --short HEAD)"
- name: Login to Amazon ECR
id: login-ecr
uses: aws-actions/amazon-ecr-login@v2
- name: Build, tag, and push lambda image to Amazon ECR
run: |
docker build . -t "${{ secrets.ECR_REGISTRY }}/${{ secrets.ECR_REPOSITORY }}:${{ steps.sha.outputs.short_sha }}"
docker push "${{ secrets.ECR_REGISTRY}}/${{ secrets.ECR_REPOSITORY }}:${{ steps.sha.outputs.short_sha }}"

0 comments on commit 4dc0589

Please sign in to comment.