Skip to content

πŸš€ Push

πŸš€ Push #31

Workflow file for this run

name: πŸš€ Push
on:
workflow_dispatch:
release:
types: [published]
jobs:
push_to_docker_hub:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -leo pipefail {0}
strategy:
matrix:
php_versions:
- '7.4'
- '8.0'
- '8.1'
steps:
- name: πŸ’» Check out current project revision
uses: actions/checkout@v4
- name: πŸ“ Configure AWS service account credentials
uses: aws-actions/configure-aws-credentials@v4
with:
aws-region: us-east-1
aws-access-key-id: ${{ vars.aws_access_key_id }}
aws-secret-access-key: ${{ secrets.aws_secret_access_key }}
- name: πŸ§‘β€πŸ’» Login to Amazon ECR Public
id: login-ecr-public
uses: aws-actions/amazon-ecr-login@v1
with:
mask-password: 'true'
registry-type: public
- name: πŸ‹ Build Docker image
run: >-
docker build
--tag public.ecr.aws/gbh-tech/lep:${{ matrix.php_versions }}
--build-arg PHP_VERSION=${{ matrix.php_versions }}
--platform linux/amd64 .
- name: πŸ›« Push image to Amazon ECR
run: docker push public.ecr.aws/gbh-tech/lep:${{ matrix.php_versions }}