Switch to workflow_dispatch
This commit is contained in:
parent
015beac49a
commit
915cbaa276
1 changed files with 8 additions and 3 deletions
11
.github/workflows/build.yml
vendored
11
.github/workflows/build.yml
vendored
|
@ -5,8 +5,13 @@ on:
|
|||
paths-ignore:
|
||||
- '**.md'
|
||||
- 'LICENSE'
|
||||
repository_dispatch:
|
||||
types: [build]
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
doRelease:
|
||||
description: 'Publish new release'
|
||||
type: boolean
|
||||
default: false
|
||||
required: false
|
||||
schedule:
|
||||
- cron: '0 12 * * *'
|
||||
|
||||
|
@ -148,7 +153,7 @@ jobs:
|
|||
path: artifacts/*
|
||||
publish_release:
|
||||
name: Publish release
|
||||
if: github.event_name != 'push'
|
||||
if: ${{ github.event_name == 'schedule' || github.event.inputs.doRelease == 'true' }}
|
||||
needs: build_ffmpeg
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
|
|
Loading…
Reference in a new issue