Skip to content

Corrected VERSION choices to matched maintained code #173

Corrected VERSION choices to matched maintained code

Corrected VERSION choices to matched maintained code #173

Workflow file for this run

name: CI
on:
push:
branches:
- master
- test/**
tags:
- "[0-9]+.[0-9]+.[0-9]+"
paths-ignore:
- README.md
- "examples/**"
- "docs/**"
pull_request:
branches:
- master
paths-ignore:
- README.md
- "examples/**"
- "docs/**"
jobs:
build:
runs-on: ubuntu-latest
if: github.repository == 'itzg/docker-minecraft-bedrock-server'
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Docker Metadata action
id: meta
uses: docker/metadata-action@v4
with:
images: itzg/minecraft-bedrock-server
flavor: |
latest=${{ github.event_name == 'push' && github.ref_name == 'master' }}
- name: Build and push
uses: docker/build-push-action@v4
with:
push: ${{ github.event_name != 'pull_request' }}
provenance: false
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: |
${{ steps.meta.outputs.labels }}
manymine.enable=true
pull: true
cache-from: type=gha
cache-to: type=gha,mode=max