We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 730911d commit 36e23fcCopy full SHA for 36e23fc
1 file changed
.github/workflows/docker-image.yml
@@ -9,13 +9,13 @@ on: [workflow_dispatch]
9
10
jobs:
11
12
- build_php82:
+ build_php84:
13
14
runs-on: ubuntu-latest
15
16
steps:
17
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v6
18
- name: Build the Docker image
19
- run: cd ubuntu_nginx_php84 && docker build --pull . --file Dockerfile --tag my-image-name:$(date +%s)
+ run: cd ubuntu_nginx_php84 && docker buildx build --pull --platform linux/amd64,linux/arm64 . --file Dockerfile --tag my-image-name:$(date +%s)
20
21
# 发布 Docker 映像: https://docs.github.com/zh/actions/publishing-packages/publishing-docker-images
0 commit comments