Merge pull request #318 from bmsiegel/revert-9a868229dd7709a6a36152bc… #138
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: On Push to Main Branch | |
on: | |
push: | |
branches: [ main ] | |
env: | |
ECR_REPO: public.ecr.aws/z0d6s8x8 | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Setup Dockerx | |
uses: docker/setup-buildx-action@v1 | |
- name: Setup AWS Credentials | |
uses: aws-actions/configure-aws-credentials@master | |
with: | |
role-to-assume: arn:aws:iam::783680406432:role/GithubActionsPublishRole-test-us-east-1 | |
aws-region: us-east-1 | |
- name: Login to Public ECR | |
uses: docker/login-action@v1 | |
with: | |
registry: public.ecr.aws | |
env: | |
AWS_REGION: us-east-1 | |
- name: Setup Push to ECR | |
run: | | |
export PLUGIN_VERSION=$(git describe --tags) | |
export TAG_BASE=${{ env.ECR_REPO }}/$(echo $GITHUB_REPOSITORY | sed s#/#-#)-test | |
echo TAG_BASE=$TAG_BASE >> $GITHUB_ENV | |
echo PLUGIN_VERSION=$PLUGIN_VERSION >> $GITHUB_ENV | |
- name: Build and push container images | |
uses: docker/build-push-action@v2 | |
with: | |
build-args: | | |
pkg_version=${{ env.PLUGIN_VERSION }} | |
context: . | |
tags: | | |
${{ env.TAG_BASE }}:latest | |
${{ env.TAG_BASE }}:${{ env.PLUGIN_VERSION }} | |
push: true |