Skip to content

feat: proper guild count in client #12

feat: proper guild count in client

feat: proper guild count in client #12

Workflow file for this run

name: Release Docker Image
on:
push:
branches:
- master
jobs:
docker:
runs-on: ubuntu-latest
if: "! contains(toJSON(github.event.commits.*.message), 'chore(deps-dev)')"
permissions:
packages: write
concurrency:
group: main
cancel-in-progress: true
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 the registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v3
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: ghcr.io/wilsonthewolf/dothemario:latest
cache-from: type=gha
cache-to: type=gha,mode=max