Skip to content

feat: write gzip-compressed nbt files #1061

feat: write gzip-compressed nbt files

feat: write gzip-compressed nbt files #1061

Workflow file for this run

name: Docker
on:
schedule:
- cron: '0 0 * * *'
push:
branches:
- main
tags:
- '*'
permissions: read-all
jobs:
build_publish_docker_hub:
name: Build and Publish Docker Image to Docker Hub
if: contains(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Extract Metadata
id: meta
uses: docker/metadata-action@v5
with:
images: endstone/endstone
tags: |
type=raw,value=latest,enable={{ is_default_branch }}
type=pep440,pattern={{version}}
- name: Build and Push
id: build-and-push
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
no-cache: true
build_publish_ghcr:
name: Build and Publish Docker Image to GitHub Container Registry
runs-on: ubuntu-latest
permissions:
packages: write
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Extract Metadata
id: meta
uses: docker/metadata-action@v5
with:
images: ghcr.io/endstonemc/endstone
tags: |
type=raw,value=latest,enable={{ is_default_branch }}
type=pep440,pattern={{version}}
- name: Build and Push
id: build-and-push
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
no-cache: true