mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-10 12:05:51 -04:00
212 lines
6.3 KiB
YAML
212 lines
6.3 KiB
YAML
name: Nightly Workflow
|
|
|
|
on:
|
|
push:
|
|
branches: [ 'develop' ]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
check-source:
|
|
runs-on: ubuntu-24.04
|
|
outputs:
|
|
head_ref: ${{ steps.findPr.outputs.head_ref }}
|
|
pr_title: ${{ steps.findPr.outputs.title }}
|
|
pr_body: ${{ steps.findPr.outputs.body }}
|
|
pr_number: ${{ steps.findPr.outputs.pr }}
|
|
steps:
|
|
- name: Find Current Pull Request
|
|
uses: jwalton/gh-find-current-pr@v1
|
|
id: findPr
|
|
with:
|
|
state: all
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
debug:
|
|
needs: [ check-source ]
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- name: Debug Info
|
|
run: |
|
|
echo "Event Name: ${{ github.event_name }}"
|
|
echo "Ref: ${{ github.ref }}"
|
|
echo "Source Branch (head_ref): ${{ needs.check-source.outputs.head_ref }}"
|
|
echo "Is Release: ${{ startsWith(needs.check-source.outputs.head_ref, 'release/') }}"
|
|
|
|
version:
|
|
name: Bump version
|
|
needs: [ check-source ]
|
|
runs-on: ubuntu-24.04
|
|
if: github.ref == 'refs/heads/develop' && !startsWith(needs.check-source.outputs.head_ref, 'release/')
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 1
|
|
|
|
- name: Setup .NET Core
|
|
uses: actions/setup-dotnet@v4
|
|
with:
|
|
dotnet-version: 10.0.x
|
|
|
|
- name: Cache NuGet packages
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: ~/.nuget/packages
|
|
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-nuget-
|
|
|
|
- name: Bump versions
|
|
uses: majora2007/dotnet-bump-version@v0.0.10
|
|
with:
|
|
version_files: Kavita.Common/Kavita.Common.csproj
|
|
github_token: ${{ secrets.REPO_GHA_PAT }}
|
|
version_mask: "0.0.0.1"
|
|
|
|
develop:
|
|
name: Build Nightly Docker
|
|
needs: [ check-source, version ]
|
|
runs-on: ubuntu-24.04
|
|
if: github.ref == 'refs/heads/develop' && !startsWith(needs.check-source.outputs.head_ref, 'release/')
|
|
permissions:
|
|
packages: write
|
|
contents: read
|
|
steps:
|
|
- name: Parse PR body
|
|
id: parse-body
|
|
env:
|
|
RAW_BODY: ${{ needs.check-source.outputs.pr_body }}
|
|
PR_NUMBER: ${{ needs.check-source.outputs.pr_number }}
|
|
run: |
|
|
body="$RAW_BODY"
|
|
if [[ ${#body} -gt 1870 ]] ; then
|
|
body=${body:0:1870}
|
|
body="${body}...and much more.
|
|
|
|
Read full changelog: https://github.com/Kareadita/Kavita/pull/$PR_NUMBER"
|
|
fi
|
|
|
|
body=${body//\'/}
|
|
body=${body//'%'/'%25'}
|
|
body=${body//$'\n'/'%0A'}
|
|
body=${body//$'\r'/'%0D'}
|
|
body=${body//$'`'/'%60'}
|
|
body=${body//$'>'/'%3E'}
|
|
|
|
echo "BODY=$body" >> $GITHUB_OUTPUT
|
|
|
|
- name: Check Out Repo
|
|
uses: actions/checkout@v4
|
|
with:
|
|
ref: develop
|
|
fetch-depth: 1
|
|
|
|
- name: NodeJS to Compile WebUI
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 22
|
|
cache: 'npm'
|
|
cache-dependency-path: UI/Web/package-lock.json
|
|
|
|
- run: |
|
|
cd UI/Web || exit
|
|
echo 'Installing web dependencies'
|
|
npm ci
|
|
|
|
echo 'Building UI'
|
|
npm run prod
|
|
|
|
echo 'Copying back to Kavita wwwroot'
|
|
rsync -a dist/ ../../API/wwwroot/
|
|
|
|
cd ../ || exit
|
|
|
|
- name: Get csproj Version
|
|
uses: kzrnm/get-net-sdk-project-versions-action@v2
|
|
id: get-version
|
|
with:
|
|
proj-path: Kavita.Common/Kavita.Common.csproj
|
|
|
|
- name: Parse Version
|
|
run: |
|
|
version='${{steps.get-version.outputs.assembly-version}}'
|
|
echo "VERSION=$version" >> $GITHUB_OUTPUT
|
|
id: parse-version
|
|
|
|
- name: Echo csproj version
|
|
run: echo "${{steps.get-version.outputs.assembly-version}}"
|
|
|
|
- name: Compile dotnet app
|
|
uses: actions/setup-dotnet@v4
|
|
with:
|
|
dotnet-version: 10.0.x
|
|
|
|
- name: Cache NuGet packages
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: ~/.nuget/packages
|
|
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-nuget-
|
|
|
|
- name: Install Swashbuckle CLI
|
|
run: |
|
|
dotnet new tool-manifest --force
|
|
dotnet tool install Swashbuckle.AspNetCore.Cli
|
|
|
|
- run: ./monorepo-build.sh
|
|
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v3
|
|
if: ${{ github.repository_owner == 'Kareadita' }}
|
|
with:
|
|
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
|
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
|
|
|
|
- name: Login to GitHub Container Registry
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
|
|
- name: Set up Docker Buildx
|
|
id: buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Extract metadata (tags, labels) for Docker
|
|
id: docker_meta_nightly
|
|
uses: docker/metadata-action@v5
|
|
with:
|
|
tags: |
|
|
type=raw,value=nightly
|
|
type=raw,value=nightly-${{ steps.parse-version.outputs.VERSION }}
|
|
images: |
|
|
name=jvmilazz0/kavita,enable=${{ github.repository_owner == 'Kareadita' }}
|
|
name=ghcr.io/${{ github.repository }}
|
|
|
|
- name: Build and push
|
|
id: docker_build
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: .
|
|
platforms: linux/amd64,linux/arm/v7,linux/arm64
|
|
push: true
|
|
tags: ${{ steps.docker_meta_nightly.outputs.tags }}
|
|
labels: ${{ steps.docker_meta_nightly.outputs.labels }}
|
|
|
|
- name: Image digest
|
|
run: echo ${{ steps.docker_build.outputs.digest }}
|
|
|
|
- name: Notify Discord
|
|
uses: rjstone/discord-webhook-notify@v1
|
|
if: ${{ github.repository_owner == 'Kareadita' }}
|
|
with:
|
|
severity: info
|
|
description: v${{steps.get-version.outputs.assembly-version}} - ${{ needs.check-source.outputs.pr_title }}
|
|
details: '${{ steps.parse-body.outputs.BODY }}'
|
|
text: <@&939225459156217917> <@&939225350775406643> A new nightly build has been released for docker.
|
|
webhookUrl: ${{ secrets.DISCORD_DOCKER_UPDATE_URL }}
|