mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2024-11-26 22:20:18 +01:00
ci: switch to official docker buildx GitHub action
Signed-off-by: Gabriel Duque <gabriel@zuh0.com>
This commit is contained in:
parent
bcf40c15a2
commit
ec9db7a42e
1 changed files with 12 additions and 1 deletions
13
.github/workflows/build-docker-images.yml
vendored
13
.github/workflows/build-docker-images.yml
vendored
|
@ -46,9 +46,20 @@ jobs:
|
|||
--build-arg BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ') \
|
||||
--build-arg VCS_REF=${GITHUB_SHA::8} \
|
||||
${TAGS} .
|
||||
-
|
||||
name: Set up QEMU
|
||||
uses: docker/setup-qemu-action@v1
|
||||
with:
|
||||
platforms: all
|
||||
-
|
||||
name: Set up Docker Buildx
|
||||
uses: crazy-max/ghaction-docker-buildx@v3
|
||||
id: buildx
|
||||
uses: docker/setup-buildx-action@v1
|
||||
with:
|
||||
version: latest
|
||||
-
|
||||
name: Available platforms
|
||||
run: echo ${{ steps.buildx.outputs.platforms }}
|
||||
-
|
||||
name: Docker Buildx (build)
|
||||
run: |
|
||||
|
|
Loading…
Reference in a new issue