-
Notifications
You must be signed in to change notification settings - Fork 0
67 lines (65 loc) · 2.37 KB
/
minecraft.yml
File metadata and controls
67 lines (65 loc) · 2.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name: Docker Minecraft Server
on:
workflow_dispatch:
jobs:
docker-build-push:
name: Build and Publish
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v2
-
name: Extract Repo Owner
shell: bash
run: echo "##[set-output name=owner;]$(echo ${GITHUB_REPOSITORY%%/*} | tr '[:upper:]' '[:lower:]')"
id: extract_owner
-
name: Set up QEMU
uses: docker/setup-qemu-action@v1
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to GHCR
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ steps.extract_owner.outputs.owner }}
password: ${{ secrets.CR_PAT }}
-
name: Build and Push 1.16
uses: docker/build-push-action@v2
with:
context: "./4. Minecraft Server/"
file: "./4. Minecraft Server/Dockerfile"
platforms: linux/amd64,linux/arm64/v8,linux/arm/v6,linux/arm/v7,linux/386
push: true
build-args: |
SERVER_VERSION=1.16.4
tags: |
ghcr.io/${{ steps.extract_owner.outputs.owner }}/minecraft:1.16
no-cache: false
labels: |
org.opencontainers.image.title=MinecraftServer1.16
org.opencontainers.image.description=${{ github.event.repository.description }}
org.opencontainers.image.url=${{ github.event.repository.html_url }}
org.opencontainers.image.source=${{ github.event.repository.html_url }}
-
name: Build and Push 1.15
uses: docker/build-push-action@v2
with:
context: "./4. Minecraft Server/"
file: "./4. Minecraft Server/Dockerfile"
platforms: linux/amd64,linux/arm64/v8,linux/arm/v6,linux/arm/v7,linux/386
push: true
build-args: |
SERVER_VERSION=1.15.2
tags: |
ghcr.io/${{ steps.extract_owner.outputs.owner }}/minecraft:1.15
no-cache: false
labels: |
org.opencontainers.image.title=MinecraftServer1.15
org.opencontainers.image.description=${{ github.event.repository.description }}
org.opencontainers.image.url=${{ github.event.repository.html_url }}
org.opencontainers.image.source=${{ github.event.repository.html_url }}