mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-07-07 18:24:13 -04:00
Update develop-workflow.yml
This commit is contained in:
parent
3186be06e3
commit
7c586a1c41
8
.github/workflows/develop-workflow.yml
vendored
8
.github/workflows/develop-workflow.yml
vendored
@ -2,7 +2,7 @@ name: Nightly Workflow
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: ['!release/**']
|
||||
branches: ['develop', '!release/**']
|
||||
pull_request:
|
||||
branches: [ 'develop', '!release/**' ]
|
||||
types: [ closed, synchronize ]
|
||||
@ -21,7 +21,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')
|
||||
if: github.event.pull_request.merged == true && ( github.event.pull_request.head.ref == 'develop' || !contains(github.event.pull_request.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.pull_request.merged == true && !contains(github.head_ref, 'release')
|
||||
if: github.event.pull_request.merged == true && ( github.event.pull_request.head.ref == 'develop' || !contains(github.event.pull_request.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.pull_request.merged == true && !contains(github.head_ref, 'release')
|
||||
if: github.event.pull_request.merged == true && ( github.event.pull_request.head.ref == 'develop' || !contains(github.event.pull_request.head.ref, 'release') )
|
||||
permissions:
|
||||
packages: write
|
||||
contents: read
|
||||
|
Loading…
x
Reference in New Issue
Block a user