tc xbuild #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: publish-dockerhub | |
on: | |
workflow_dispatch: | |
push: | |
pull_request: | |
jobs: | |
basic: | |
runs-on: ubuntu-22.04 | |
env: | |
ARCHS: linux/amd64,linux/arm64 #,linux/arm/v5,linux/arm/v7,linux/arm64/v8,linux/mips64le,linux/ppc64le,linux/s390x,linux/386 | |
steps: | |
- name: Checkout turnilo | |
uses: actions/checkout@v4 | |
with: | |
path: turnilo | |
- name: Build and push to dockerhub | |
run: | | |
#Install builders | |
docker pull tonistiigi/binfmt | |
docker run --privileged --rm tonistiigi/binfmt --install all | |
docker buildx create --use --name xbuilder node-amd64 | |
docker buildx create --append --name xbuilder node-arm64 | |
#Cross-build | |
cd turnilo | |
docker buildx build --platform ${ARCHS} -f Dockerfile . |