generated from nystudio107/spin-up-craft
-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (40 loc) · 1.28 KB
/
build-and-push-docker-images.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Build and Push Docker Images
on:
push:
paths:
- .docker-config/spin-up-craft-base/*
tags:
- '*.*.*'
workflow_dispatch:
jobs:
build-php:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: ["8.0", "8.1"]
name: spin-up-craft-base ${{ matrix.php }} images
steps:
- name: Check out the repository
uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
with:
install: true
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build .docker-config/nystudio107/spin-up-craft-base:${{ matrix.php }}-alpine
uses: docker/build-push-action@v2
with:
context: .docker-config/spin-up-craft-base/php-${{ matrix.php }}-alpine
file: .docker-config/spin-up-craft-base/php-${{ matrix.php }}-alpine/Dockerfile
push: true
platforms: linux/amd64,linux/arm64
tags: nystudio107/spin-up-craft-base:${{ matrix.php }}-alpine
build-args: |
PHP_VERSION=${{ matrix.php }}