mirror of
https://github.com/N0rthernL1ghts/wordpress.git
synced 2024-11-23 19:57:22 +01:00
Improve workflow, use new actions and also cache
This commit is contained in:
parent
b87e14fe3d
commit
f5355e6a8e
19
.github/workflows/image.yml
vendored
19
.github/workflows/image.yml
vendored
|
@ -10,11 +10,22 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: checkout code
|
- name: checkout code
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
- name: install buildx
|
- name: Cache Docker layers
|
||||||
id: buildx
|
uses: actions/cache@v2
|
||||||
uses: crazy-max/ghaction-docker-buildx@v1
|
id: cache
|
||||||
with:
|
with:
|
||||||
version: latest
|
path: /tmp/.buildx-cache
|
||||||
|
key: ${{ runner.os }}-buildx-${{ github.sha }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-buildx-
|
||||||
|
- name: Set up QEMU
|
||||||
|
uses: docker/setup-qemu-action@v1
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v1
|
||||||
|
with:
|
||||||
|
config-inline: |
|
||||||
|
[worker.oci]
|
||||||
|
max-parallelism = 16
|
||||||
- name: Login to DockerHub
|
- name: Login to DockerHub
|
||||||
uses: docker/login-action@v1
|
uses: docker/login-action@v1
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user