69 lines
2.0 KiB
YAML
69 lines
2.0 KiB
YAML
name: MoviePilot Builder
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- main
|
|
# paths:
|
|
# - version.py
|
|
|
|
env:
|
|
REGISTRY: ${{ secrets.DOCKER_REGISTRY && secrets.DOCKER_REGISTRY || 'docker.io' }}
|
|
REGISTRY_MIRROR: ${{ secrets.DOCKER_REGISTRY_MIRROR && secrets.DOCKER_REGISTRY_MIRROR || 'docker.io' }}
|
|
REPOSITORY: ${{ github.repository }}
|
|
RUNNER_TOOL_CACHE: /toolcache
|
|
BASEIMAGE: ${{ secrets.BASEIMAGE && secrets.BASEIMAGE || '' }}
|
|
|
|
|
|
jobs:
|
|
Docker-build:
|
|
runs-on: ubuntu-latest
|
|
name: Build Docker Image
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Release version
|
|
id: release_version
|
|
run: |
|
|
app_version=$(cat version.py |sed -ne "s/APP_VERSION\s=\s'v\(.*\)'/\1/gp")
|
|
echo "app_version=$app_version" >> $GITHUB_ENV
|
|
|
|
- name: Docker Meta
|
|
id: meta
|
|
uses: actions/metadata-action@v5
|
|
with:
|
|
images: gitea.icodef.com/codfrm/moviepilot
|
|
tags: |
|
|
type=raw,value=${{ env.app_version }}
|
|
type=raw,value=latest
|
|
|
|
- name: Set Up QEMU
|
|
uses: actions/setup-qemu-action@v3
|
|
|
|
- name: Set Up Buildx
|
|
uses: actions/setup-buildx-action@v3
|
|
|
|
- name: Login DockerHub
|
|
uses: actions/login-action@v3
|
|
with:
|
|
registry: ${{ env.REGISTRY }}
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_TOKEN }}
|
|
|
|
- name: Build Image
|
|
uses: actions/build-push-action@v5
|
|
with:
|
|
context: .
|
|
file: Dockerfile
|
|
platforms: |
|
|
linux/amd64
|
|
# linux/arm64/v8
|
|
push: true
|
|
build-args: |
|
|
MOVIEPILOT_VERSION=${{ env.app_version }}
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
cache-from: type=local, src=/root/.cache/buildx-cache/${{ github.workflow }}-docker
|
|
cache-to: type=local, dest=/root/.cache/buildx-cache/${{ github.workflow }}-docker
|