74 lines
1.8 KiB
YAML
74 lines
1.8 KiB
YAML
name: MoviePilot Docker
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
name: Build Docker Image
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@master
|
|
|
|
- name: Docker meta
|
|
id: meta
|
|
uses: docker/metadata-action@v4
|
|
with:
|
|
images: ${{ secrets.DOCKER_USERNAME }}/moviepilot
|
|
|
|
-
|
|
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: Setup node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '18'
|
|
|
|
-
|
|
name: Build frontend
|
|
id: build_brontend
|
|
run: |
|
|
git clone https://github.com/jxxghp/MoviePilot-Frontend
|
|
cd MoviePilot-Frontend
|
|
yarn && yarn build
|
|
cd ..
|
|
mkdir -p /public
|
|
cp -rf ./MoviePilot-Frontend/dist/* /public/
|
|
rm -rf MoviePilot-Frontend
|
|
chmod +x start.sh
|
|
|
|
-
|
|
name: Set Up QEMU
|
|
uses: docker/setup-qemu-action@v1
|
|
|
|
-
|
|
name: Set Up Buildx
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
-
|
|
name: Login DockerHub
|
|
uses: docker/login-action@v1
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
-
|
|
name: Build Image
|
|
uses: docker/build-push-action@v2
|
|
with:
|
|
context: .
|
|
file: ./Dockerfile
|
|
platforms: |
|
|
linux/amd64
|
|
push: true
|
|
tags: |
|
|
${{ secrets.DOCKER_USERNAME }}/moviepilot:latest
|
|
${{ secrets.DOCKER_USERNAME }}/moviepilot:${{ env.app_version }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|