All checks were successful
Release Build / create-release-branch (push) Successful in 8s
8 lines
220 B
Bash
8 lines
220 B
Bash
#!/bin/bash
|
|
|
|
docker buildx build \
|
|
--platform linux/amd64,linux/arm64 \
|
|
--tag "${DOCKERHUB_USERNAME:-kuznetcovay}"/my-build-golang-runner:latest \
|
|
--push \
|
|
-f Dockerfile_for_runner_image \
|
|
. |