mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2024-06-07 19:40:43 +00:00
64 lines
1.6 KiB
YAML
64 lines
1.6 KiB
YAML
name: Validate PR
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ master ]
|
|
types: [assigned, opened, synchronize, labeled]
|
|
paths-ignore:
|
|
- "*.md"
|
|
- "docs/**"
|
|
- "examples/**"
|
|
|
|
env:
|
|
IMAGE_TO_TEST: itzg/minecraft-server:test-${{ github.repository_owner }}-${{ github.run_id }}
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2.4.0
|
|
|
|
- name: Setup Docker Buildx
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
- name: Build
|
|
uses: docker/build-push-action@v2.7.0
|
|
with:
|
|
context: .
|
|
platforms: linux/amd64
|
|
tags: ${{ env.IMAGE_TO_TEST }}
|
|
load: true
|
|
cache-from: type=gha
|
|
|
|
- name: Run tests
|
|
run: |
|
|
tests/test.sh
|
|
|
|
- name: Gather Docker metadata
|
|
if: contains(github.event.pull_request.labels.*.name, 'ci/push-image')
|
|
id: meta
|
|
uses: docker/metadata-action@v3
|
|
with:
|
|
images: |
|
|
itzg/minecraft-server
|
|
|
|
- name: Login to DockerHub
|
|
if: contains(github.event.pull_request.labels.*.name, 'ci/push-image')
|
|
uses: docker/login-action@v1
|
|
with:
|
|
username: ${{ secrets.DOCKER_USER }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Push
|
|
if: contains(github.event.pull_request.labels.*.name, 'ci/push-image')
|
|
uses: docker/build-push-action@v2.7.0
|
|
with:
|
|
context: .
|
|
platforms: linux/amd64,linux/arm/v7,linux/arm64
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
pull: true
|
|
push: true
|
|
cache-from: type=gha
|
|
labels: ${{ steps.meta.outputs.labels }}
|