Add workflow_dispatch to allow manual run of workflow

This commit is contained in:
Holger Obermaier 2023-09-13 11:31:57 +02:00
parent 562bcbf486
commit e1bb3dbef6

View File

@ -8,6 +8,7 @@ on:
push:
tags:
- '**'
workflow_dispatch:
jobs:
@ -35,7 +36,7 @@ jobs:
# fetch-depth must be 0 to use git describe
# See: https://github.com/marketplace/actions/checkout
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
@ -105,7 +106,7 @@ jobs:
# fetch-depth must be 0 to use git describe
# See: https://github.com/marketplace/actions/checkout
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0
@ -157,7 +158,7 @@ jobs:
# fetch-depth must be 0 to use git describe
# See: https://github.com/marketplace/actions/checkout
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0