mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-07-09 03:04:19 -04:00
v0.7.10 - Bugfixes (#2360)
This commit is contained in:
parent
8773fe42fd
commit
0cf760ecd3
4
.github/workflows/develop-workflow.yml
vendored
4
.github/workflows/develop-workflow.yml
vendored
@ -2,9 +2,9 @@ name: Nightly Workflow
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: '**'
|
||||
branches: ['!release/**']
|
||||
pull_request:
|
||||
branches: [ develop, '!release/**' ]
|
||||
branches: [ 'develop', '!release/**' ]
|
||||
types: [ closed ]
|
||||
|
||||
jobs:
|
||||
|
10
.github/workflows/release-workflow.yml
vendored
10
.github/workflows/release-workflow.yml
vendored
@ -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
|
||||
|
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user