Make submit-release workflow a manually run action

This commit is contained in:
MoojMidge 2024-02-26 09:31:37 +11:00
parent 95b405422f
commit 8a9f34308c

View file

@ -1,21 +1,20 @@
name: Submit Release
on:
push:
tags:
- 'v*'
- '!*dev*'
- '!*alpha*'
- '!*beta*'
workflow_dispatch:
# push:
# tags:
# - 'v*'
# - '!*dev*'
# - '!*alpha*'
# - '!*beta*'
jobs:
release:
if: github.repository == 'anxdpanic/plugin.video.youtube'
if: github.repository == 'anxdpanic/plugin.video.youtube' || github.event_name == 'workflow_dispatch'
name: Submit Release
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
python-version: [ 3.9 ]