Prep for Hotfix (#2364)

This commit is contained in:
Joe Milazzo 2023-10-29 08:51:23 -05:00 committed by GitHub
parent 33412e397b
commit 6ac65f8eba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,7 +21,7 @@ jobs:
build:
name: Upload Kavita.Common for Version Bump
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/develop') }}
if: github.event.pull_request.merged == true && !contains(github.head_ref, 'release')
steps:
- name: Checkout Repo
uses: actions/checkout@v3
@ -37,7 +37,7 @@ jobs:
name: Bump version
needs: [ build ]
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/develop') }}
if: github.event.pull_request.merged == true && !contains(github.head_ref, 'release')
steps:
- uses: actions/checkout@v3
with:
@ -59,7 +59,7 @@ jobs:
name: Build Nightly Docker
needs: [ build, version ]
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/develop') }}
if: github.event.pull_request.merged == true && !contains(github.head_ref, 'release')
permissions:
packages: write
contents: read