We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ae71dc commit 1b94a84Copy full SHA for 1b94a84
1 file changed
.github/workflows/build-deb-qt5-amd64.yml
@@ -4,10 +4,18 @@ on:
4
push:
5
tags:
6
- "*"
7
+ workflow_dispatch:
8
+ inputs:
9
+ branch:
10
+ description: 'Checkout branch'
11
+ required: false
12
+ tag:
13
+ description: 'Checkout tag'
14
15
16
jobs:
17
build-omodsim:
- name: Build OpenModSim deb package version '${{ github.ref_name }}' with Qt5
18
+ name: Build OpenModSim deb package version '${{ github.event.inputs.tag || github.event.inputs.branch || github.ref_name }}' with Qt5
19
runs-on: ubuntu-latest
20
container:
21
image: ubuntu:20.04
@@ -29,7 +37,7 @@ jobs:
29
37
- name: Checkout repository
30
38
uses: actions/checkout@v4
31
39
with:
32
- ref: ${{ github.ref_name }}
40
+ ref: ${{ github.event.inputs.tag || github.event.inputs.branch || github.ref_name }}
33
41
34
42
- name: Extract version from CMakeLists.txt
35
43
id: extract_version
0 commit comments