mirror of
https://github.com/ChrispyBacon-dev/DockFlare.git
synced 2026-04-28 03:39:32 +00:00
Some checks failed
Docker Image - DockFlare / build_self_hosted (push) Has been cancelled
Docker Image - Mail Manager / build_self_hosted (push) Has been cancelled
Docker Image - Webmail / build_self_hosted (push) Has been cancelled
Docker Image - DockFlare / build_github_hosted_fallback (push) Has been cancelled
Docker Image - Mail Manager / build_github_hosted_fallback (push) Has been cancelled
Docker Image - Webmail / build_github_hosted_fallback (push) Has been cancelled
130 lines
3.6 KiB
YAML
130 lines
3.6 KiB
YAML
# .github/workflows/docker-image.yml
|
|
name: Docker Image - DockFlare
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "stable"
|
|
- "unstable"
|
|
- "dev"
|
|
- "dockflare-mail"
|
|
tags:
|
|
- "v*.*.*"
|
|
- "v*.*.*-*"
|
|
paths:
|
|
- "dockflare/**"
|
|
pull_request:
|
|
branches:
|
|
- "stable"
|
|
- "unstable"
|
|
- "dev"
|
|
- "dockflare-mail"
|
|
paths:
|
|
- "dockflare/**"
|
|
|
|
env:
|
|
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build_self_hosted:
|
|
runs-on: self-hosted
|
|
|
|
timeout-minutes: 3
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
|
|
- name: Set up Docker Buildx
|
|
id: buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Log in to Docker Hub
|
|
if: github.event_name == 'push'
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Extract Docker metadata
|
|
id: meta
|
|
uses: docker/metadata-action@v5
|
|
with:
|
|
images: alplat/dockflare
|
|
tags: |
|
|
type=semver,pattern={{version}}
|
|
type=semver,pattern={{version}},suffix=-{{premajor}}-{{prerelease}}
|
|
type=ref,event=branch,pattern=stable,value=latest
|
|
type=ref,event=branch,pattern=stable,value=stable
|
|
type=ref,event=branch,pattern=unstable,value=unstable
|
|
type=ref,event=branch,pattern=dev,value=dev
|
|
type=sha,format=short
|
|
type=ref,event=tag
|
|
type=ref,event=branch
|
|
|
|
- name: Build and Push Docker Image
|
|
id: build_and_push
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
context: ./dockflare
|
|
platforms: linux/amd64,linux/arm64
|
|
push: ${{ github.event_name == 'push' }}
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
|
|
build_github_hosted_fallback:
|
|
needs: build_self_hosted
|
|
if: failure() || cancelled()
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
|
|
- name: Set up Docker Buildx
|
|
id: buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Log in to Docker Hub
|
|
if: github.event_name == 'push'
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Extract Docker metadata
|
|
id: meta
|
|
uses: docker/metadata-action@v5
|
|
with:
|
|
images: alplat/dockflare
|
|
tags: |
|
|
type=semver,pattern={{version}}
|
|
type=semver,pattern={{version}},suffix=-{{premajor}}-{{prerelease}}
|
|
type=ref,event=branch,pattern=stable,value=latest
|
|
type=ref,event=branch,pattern=stable,value=stable
|
|
type=ref,event=branch,pattern=unstable,value=unstable
|
|
type=ref,event=branch,pattern=dev,value=dev
|
|
type=sha,format=short
|
|
type=ref,event=tag
|
|
type=ref,event=branch
|
|
|
|
- name: Build and Push Docker Image
|
|
id: build_and_push
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
context: ./dockflare
|
|
platforms: linux/amd64,linux/arm64
|
|
push: ${{ github.event_name == 'push' }}
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|