misc_pterodactyl-panel/.github/workflows/docker.yaml

75 lines
2.4 KiB
YAML
Raw Normal View History

name: Publish Docker Image
on:
push:
branches:
2022-12-05 00:40:17 +00:00
- develop
release:
types:
- published
jobs:
push:
2020-11-15 04:46:37 +00:00
name: Push Image to GitHub Packages
runs-on: ubuntu-20.04
2020-11-15 04:46:37 +00:00
# Always run against a tag, even if the commit into the tag has [docker skip]
# within the commit message.
if: "!contains(github.ref, 'develop') || (!contains(github.event.head_commit.message, 'skip docker') && !contains(github.event.head_commit.message, 'docker skip'))"
steps:
- name: Code Checkout
uses: actions/checkout@v3
2022-12-05 00:40:17 +00:00
- name: Docker metadata
2020-11-15 04:46:37 +00:00
id: docker_meta
2022-12-05 00:40:17 +00:00
uses: docker/metadata-action@v4
2020-11-15 04:46:37 +00:00
with:
images: ghcr.io/pterodactyl/panel
2022-12-05 01:37:45 +00:00
flavor: |
2022-12-05 01:36:26 +00:00
latest=false
2022-12-05 01:37:45 +00:00
tags: |
2022-12-05 00:40:17 +00:00
type=raw,value=latest,enable=${{ github.event_name == 'release' && github.event.action == 'published' && github.event.release.prerelease == false }}
type=ref,event=tag
type=ref,event=branch
- name: Setup QEMU
uses: docker/setup-qemu-action@v2
2022-12-05 00:40:17 +00:00
- name: Setup Docker buildx
uses: docker/setup-buildx-action@v2
2022-12-05 00:40:17 +00:00
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.REGISTRY_TOKEN }}
2022-12-05 01:36:26 +00:00
- name: Update app.php version
if: "github.event_name == 'release' && github.event.action == 'published'"
run: |
sed -i "s/ 'version' => 'canary',/ 'version' => '${REF:11}',/" config/app.php
2022-12-05 00:40:17 +00:00
- name: Build and Push (tag)
uses: docker/build-push-action@v3
if: "github.event_name == 'release' && github.event.action == 'published'"
with:
context: .
file: ./Dockerfile
push: true
platforms: linux/amd64,linux/arm64
2020-11-15 04:46:37 +00:00
labels: ${{ steps.docker_meta.outputs.labels }}
2022-12-05 00:40:17 +00:00
tags: ${{ steps.docker_meta.outputs.tags }}
2022-12-05 00:40:17 +00:00
- name: Build and Push (develop)
uses: docker/build-push-action@v3
if: "github.event_name == 'push' && contains(github.ref, 'develop')"
with:
context: .
file: ./Dockerfile
2020-11-15 04:46:37 +00:00
push: ${{ github.event_name != 'pull_request' }}
platforms: linux/amd64,linux/arm64
2020-11-15 04:46:37 +00:00
labels: ${{ steps.docker_meta.outputs.labels }}
2022-12-05 00:40:17 +00:00
tags: ${{ steps.docker_meta.outputs.tags }}
cache-from: type=gha
cache-to: type=gha,mode=max