mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-08-09 07:25:25 +08:00
86 lines
2.5 KiB
YAML
86 lines
2.5 KiB
YAML
name: MoviePilot Builder Beta
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
|
|
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: Checkout Wiki Plugin Market
|
|
uses: actions/checkout@v4
|
|
with:
|
|
repository: jxxghp/MoviePilot-Wiki
|
|
ref: main
|
|
path: .build/moviepilot-wiki
|
|
sparse-checkout: plugin.md
|
|
sparse-checkout-cone-mode: false
|
|
persist-credentials: false
|
|
|
|
- name: Generate Plugin Market Default
|
|
id: plugin_market
|
|
run: |
|
|
python3 -m scripts.generate_plugin_market_default \
|
|
--wiki-file .build/moviepilot-wiki/plugin.md \
|
|
--config-file app/core/config.py
|
|
wiki_commit=$(git -C .build/moviepilot-wiki rev-parse HEAD)
|
|
echo "wiki_commit=$wiki_commit" >> "$GITHUB_OUTPUT"
|
|
|
|
- name: Docker Meta
|
|
id: meta
|
|
uses: docker/metadata-action@v5
|
|
with:
|
|
images: |
|
|
${{ secrets.DOCKER_USERNAME }}/moviepilot-v2
|
|
ghcr.io/${{ github.repository }}
|
|
tags: |
|
|
type=raw,value=beta
|
|
|
|
- name: Set Up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
|
|
- name: Set Up Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Login DockerHub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Login GitHub Container Registry
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Build Image
|
|
uses: docker/build-push-action@v7
|
|
with:
|
|
context: .
|
|
file: docker/Dockerfile
|
|
platforms: |
|
|
linux/amd64
|
|
linux/arm64/v8
|
|
push: true
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
labels: |
|
|
${{ steps.meta.outputs.labels }}
|
|
org.moviepilot.plugin-market-wiki-revision=${{ steps.plugin_market.outputs.wiki_commit }}
|
|
cache-from: type=gha,scope=moviepilot-docker,version=2
|
|
cache-to: type=gha,scope=moviepilot-docker,mode=max,version=2
|