Skip to content

Commit

Permalink
tc xbuild
Browse files Browse the repository at this point in the history
  • Loading branch information
msune committed Apr 18, 2024
1 parent eba5073 commit e8aafd9
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/publish_docker.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
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 .

0 comments on commit e8aafd9

Please sign in to comment.