mirror of
https://github.com/gotson/komga.git
synced 2026-04-30 10:52:59 +02:00
ci: trigger releases only on workflow dispatch
This commit is contained in:
parent
4dd1e7af76
commit
f2387b61be
1 changed files with 2 additions and 1 deletions
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
|
|
@ -5,6 +5,7 @@ on:
|
|||
push:
|
||||
branches-ignore:
|
||||
- 'dependabot/**'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
test:
|
||||
|
|
@ -62,7 +63,7 @@ jobs:
|
|||
name: Semantic Release
|
||||
runs-on: ubuntu-latest
|
||||
needs: [ test, webui ]
|
||||
if: ${{ github.event_name != 'pull_request' }}
|
||||
if: ${{ github.event_name == 'workflow_dispatch' }}
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: actions/setup-node@v2
|
||||
|
|
|
|||
Loading…
Reference in a new issue