Skip to content

remove mqtt config

remove mqtt config #13

Workflow file for this run

name: build
on:
push:
branches:
- "main"
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ secrets.GHCR_USERNAME }}
password: ${{ secrets.GHCR_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v3
with:
context: .
target: production
platforms: linux/amd64,linux/arm64
push: true
tags: ghcr.io/simon511000/grandmondebot:latest
cache-from: type=gha
cache-to: type=gha,mode=max