65 lines
1.9 KiB
YAML
65 lines
1.9 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: 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: Build frontend
|
|
id: build_brontend
|
|
run: |
|
|
curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash -
|
|
curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | sudo tee /usr/share/keyrings/yarnkey.gpg >/dev/null
|
|
echo "deb [signed-by=/usr/share/keyrings/yarnkey.gpg] https://dl.yarnpkg.com/debian stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
|
|
sudo apt-get update && sudo apt-get install -y nodejs yarn
|
|
node -v && yarn --version
|
|
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
|
|
|
|
-
|
|
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 }}
|