Skip to content

chore: do not start client in CI mode (#37) #25

chore: do not start client in CI mode (#37)

chore: do not start client in CI mode (#37) #25

name: Docker
on:
workflow_dispatch:
push:
branches: ["main"]
jobs:
push:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3
with:
install: true
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Build and push
run: ./build.py buildx --platform linux/amd64 --no-latest --branch ${GITHUB_REF##*/}