-
Notifications
You must be signed in to change notification settings - Fork 4
79 lines (74 loc) · 1.98 KB
/
Copy path8.0.yml
File metadata and controls
79 lines (74 loc) · 1.98 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# NOTE: This file was generated via generate.sh. Don't edit it directly
name: PHP 8.0
on:
pull_request:
paths:
- 8.0/**
push:
paths:
- 8.0/**
defaults:
run:
shell: 'bash -Eeuo pipefail -x {0}'
jobs:
verify-templating:
name: Verify templating
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Generate
run: make all
- name: Check Git status
run: |
test -z "$(git status --short)"
docker:
name: ${{ matrix.target }}
runs-on: ubuntu-latest
needs:
- verify-templating
strategy:
matrix:
target:
[
"8_0_22-bullseye",
"8_0_22-buster",
"8_0_22-alpine3_16",
"8_0_22-alpine3_15",
]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
with:
platforms: arm,arm64
- name: Set up buildx
uses: docker/setup-buildx-action@v1
- name: Docker Hub login
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: GHCR Login
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker Hub build and push
uses: docker/bake-action@v2
with:
targets: ${{ matrix.target }}
set: |
*.platform=linux/amd64,linux/arm,linux/arm64
push: ${{ github.event_name == 'push' }}
- name: GHCR build and push
uses: docker/bake-action@v2
env:
REGISTRY: ghcr.io
REPO: ${{ github.repository_owner }}/php-dev
with:
targets: ${{ matrix.target }}
set: |
*.platform=linux/amd64,linux/arm,linux/arm64
push: ${{ github.event_name == 'push' }}