Skip to content

[Feat] LFG group formation and teleport #626

[Feat] LFG group formation and teleport

[Feat] LFG group formation and teleport #626

Workflow file for this run

name: Docker Build
on:
push:
branches: [ master, united, devel ]
pull_request:
branches: [ master, united ]
# Builds images and pushes nothing, so read is all the token ever needs -- at the
# workflow level and again on the job, because a job may widen what the workflow grants
# but never the other way round.
permissions:
contents: read
concurrency:
group: docker-build-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build mangosd image
uses: docker/build-push-action@v6
with:
context: .
file: extra/docker/DockerFile-mangosd
tags: mangosd:latest
push: false
cache-from: type=gha,scope=mangosd
cache-to: type=gha,scope=mangosd,mode=max
- name: Build realmd image
uses: docker/build-push-action@v6
with:
context: .
file: extra/docker/DockerFile-realmd
tags: realmd:latest
push: false
cache-from: type=gha,scope=realmd
cache-to: type=gha,scope=realmd,mode=max