123456789101112131415161718192021222324252627282930313233343536 |
- name: build-php-8-3
- on: workflow_dispatch
- jobs:
- php-8-3:
- runs-on: ubuntu-latest
- steps:
- -
- name: Checkout
- uses: actions/checkout@v4
- with:
- ref: release/next
- -
- name: Set up QEMU
- uses: docker/setup-qemu-action@v3
- -
- name: Set up Docker Buildx
- uses: docker/setup-buildx-action@v3
- -
- name: Login to DockerHub
- uses: docker/login-action@v3
- with:
- username: ${{ secrets.DOCKERHUB_USERNAME }}
- password: ${{ secrets.DOCKERHUB_TOKEN }}
- -
- name: Build and push
- id: docker_build
- uses: docker/build-push-action@v6
- with:
- context: images/php/8.3
- platforms: linux/amd64,linux/arm64
- push: true
- tags: |
- markoshust/magento-php:8.3-fpm
- markoshust/magento-php:8.3-fpm-5
|