mirror of
https://github.com/jkaninda/laravel-php-fpm.git
synced 2025-12-06 08:59:38 +01:00
102 lines
2.9 KiB
YAML
102 lines
2.9 KiB
YAML
name: Manual-build
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
docker_tag:
|
|
description: 'Docker tag'
|
|
required: true
|
|
default: 'latest'
|
|
type: string
|
|
env:
|
|
BUILDKIT_IMAGE: jkaninda/laravel-php-fpm
|
|
jobs:
|
|
docker:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
-
|
|
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 7.2
|
|
uses: docker/build-push-action@v3
|
|
with:
|
|
file: "./src/docker/7.2/Dockerfile"
|
|
push: true
|
|
tags: "${{env.BUILDKIT_IMAGE}}:7.2"
|
|
-
|
|
name: Build and push 7.3
|
|
uses: docker/build-push-action@v3
|
|
with:
|
|
file: "./src/docker/7.3/Dockerfile"
|
|
push: true
|
|
tags: "${{env.BUILDKIT_IMAGE}}:7.3"
|
|
-
|
|
name: Build and push 8.0
|
|
uses: docker/build-push-action@v3
|
|
with:
|
|
file: "./src/docker/8.0/Dockerfile"
|
|
push: true
|
|
tags: "${{env.BUILDKIT_IMAGE}}:8.0"
|
|
-
|
|
name: Build and push 8.1
|
|
uses: docker/build-push-action@v3
|
|
with:
|
|
file: "./src/docker/8.1/Dockerfile"
|
|
push: true
|
|
platforms: linux/amd64,linux/arm64
|
|
tags: "${{env.BUILDKIT_IMAGE}}:8.1"
|
|
-
|
|
name: Build and push 8.2
|
|
uses: docker/build-push-action@v3
|
|
with:
|
|
file: "./src/docker/8.2/Dockerfile"
|
|
push: true
|
|
platforms: linux/amd64,linux/arm64
|
|
tags: "${{env.BUILDKIT_IMAGE}}:8.2"
|
|
-
|
|
name: Build and push 8.1 alpine
|
|
uses: docker/build-push-action@v3
|
|
with:
|
|
file: "./src/docker/8.1/Dockerfile.alpine"
|
|
push: true
|
|
platforms: linux/amd64,linux/arm64
|
|
tags: |
|
|
"${{env.BUILDKIT_IMAGE}}:8.1-alpine"
|
|
-
|
|
name: Build and push 8.2 alpine
|
|
uses: docker/build-push-action@v3
|
|
with:
|
|
file: "./src/docker/8.2/Dockerfile.alpine"
|
|
push: true
|
|
platforms: linux/amd64,linux/arm64
|
|
tags: |
|
|
"${{env.BUILDKIT_IMAGE}}:8.2-alpine"
|
|
-
|
|
name: Build and push 8.3 alpine
|
|
uses: docker/build-push-action@v3
|
|
with:
|
|
file: "./src/docker/8.3/Dockerfile.alpine"
|
|
push: true
|
|
platforms: linux/amd64,linux/arm64
|
|
tags: |
|
|
"${{env.BUILDKIT_IMAGE}}:8.3-alpine"
|
|
-
|
|
name: Build and push 8.3
|
|
uses: docker/build-push-action@v3
|
|
with:
|
|
file: "./src/docker/8.3/Dockerfile"
|
|
push: true
|
|
platforms: linux/amd64,linux/arm64
|
|
tags: |
|
|
"${{env.BUILDKIT_IMAGE}}:8.3"
|
|
"${{env.BUILDKIT_IMAGE}}:latest"
|