v0.7.10 - Bugfixes (#2360)

This commit is contained in:
Joe Milazzo 2023-10-28 14:25:42 -05:00 committed by GitHub
parent 8773fe42fd
commit 0cf760ecd3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 7 deletions

View File

@ -2,9 +2,9 @@ name: Nightly Workflow
on:
push:
branches: '**'
branches: ['!release/**']
pull_request:
branches: [ develop, '!release/**' ]
branches: [ 'develop', '!release/**' ]
types: [ closed ]
jobs:

View File

@ -1,13 +1,15 @@
name: Release Workflow
name: Stable Workflow
on:
push:
branches: ['release/**']
pull_request:
branches: [ release/** ]
branches: [ 'develop' ]
types: [ closed ]
jobs:
if_merged:
if: github.event.pull_request.merged == true
if: github.event.pull_request.merged == true && contains(github.head_ref, 'release')
runs-on: ubuntu-latest
steps:
- run: |
@ -15,6 +17,7 @@ jobs:
build:
name: Upload Kavita.Common for Version Bump
runs-on: ubuntu-latest
if: github.event.pull_request.merged == true && contains(github.head_ref, 'release')
steps:
- name: Checkout Repo
uses: actions/checkout@v3
@ -29,6 +32,7 @@ jobs:
stable:
name: Build Stable and Nightly Docker if Release
needs: [ build ]
if: github.event.pull_request.merged == true && contains(github.head_ref, 'release')
runs-on: ubuntu-latest
permissions:
packages: write

View File

@ -4,7 +4,7 @@
<TargetFramework>net7.0</TargetFramework>
<Company>kavitareader.com</Company>
<Product>Kavita</Product>
<AssemblyVersion>0.7.10.1</AssemblyVersion>
<AssemblyVersion>0.7.10.0</AssemblyVersion>
<NeutralLanguage>en</NeutralLanguage>
<TieredPGO>true</TieredPGO>
</PropertyGroup>