Skip to content

update model

update model #43

Workflow file for this run

name: Docker Image CI
on:
push:
branches: [ latest-docker ]
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: Login to Docker registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push image
id: docker_build
uses: docker/build-push-action@v6
with:
push: true
tags: ghcr.io/buschlab/mtbexporter:latest
platforms: linux/amd64,linux/arm64/v8