Merge pull request #15 from iFixit/dependabot/pip/pymongo-4.6.3 #3
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: Shopify Analytics Deploy | |
permissions: | |
id-token: write # Required to allow the JWT to be requested from GitHub's OIDC provider | |
contents: read # Required for actions/checkout | |
on: | |
push: | |
branches: [ master ] | |
# Allow running this workflow manually from the Actions tab | |
workflow_dispatch: | |
env: | |
ECR_IMAGE_REPO: "884681002735.dkr.ecr.us-east-1.amazonaws.com/shopify-analytics" | |
DEPLOY_IAM_ROLE: "arn:aws:iam::884681002735:role/github_actions/github-actions-role" | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build Image | |
run: docker build -t ${{ env.ECR_IMAGE_REPO }}:${{ github.sha }} --label org.label-schema.name="shopify-analytics" . | |
- name: Configure AWS credentials | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: ${{ env.DEPLOY_IAM_ROLE }} | |
aws-region: us-east-1 | |
- name: ECR login | |
uses: aws-actions/amazon-ecr-login@v2 | |
- name: Push to ECR | |
run: docker push ${{ env.ECR_IMAGE_REPO }}:${{ github.sha }} |