We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fca243 commit 86ea5c8Copy full SHA for 86ea5c8
.github/workflows/build_single.yml
@@ -1,8 +1,37 @@
1
name: Build packages (single)
2
3
# This workflow runs when any of the following occur:
4
+# - Run from another worklow of GH API
5
# - Run manually
6
on:
7
+ workflow_call:
8
+ inputs:
9
+ revision:
10
+ description: "Revision"
11
+ type: string
12
+ default: "0"
13
+ checksum:
14
+ description: "Checksum ?"
15
+ type: boolean
16
+ default: false
17
+ is_stage:
18
+ description: "Is stage ?"
19
20
21
+ system:
22
+ description: "Package OS"
23
+ type: choice
24
+ options:
25
+ - rpm
26
+ - deb
27
+ default: deb
28
+ architecture:
29
+ description: "Package architecture"
30
31
32
+ - amd64
33
+ - x86_64
34
+ default: amd64
35
workflow_dispatch:
36
inputs:
37
revision:
0 commit comments