You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: The runtime dir to be used (⚠️ this parameter is optional and needed only in case of the single runtime build, set it accordingly to the runtime you want to build)
description: Binary to be built for the release candidate
34
+
default: all
35
+
type: choice
36
+
options:
37
+
- polkadot
38
+
- polkadot-parachain
39
+
- polkadot-omni-node
40
+
- frame-omni-bencher
41
+
- chain-spec-builder
42
+
- substrate-node
43
+
- eth-rpc
44
+
- subkey
45
+
- all
46
+
release_tag:
47
+
description: Tag matching the actual release candidate with the format polkadot-stableYYMM(-X)-rcY or polkadot-stableYYMM(-X)
48
+
type: string
49
+
required: true
50
+
no_runtimes:
51
+
description: If true, no runtime build will be triggered and release draft will be published without runtimes (⚠️ use it for the patch releases of the latest stable)
Copy file name to clipboardExpand all lines: .github/workflows/release-30_publish_release_draft.yml
+70Lines changed: 70 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,48 @@ on:
15
15
description: Tag matching the actual release candidate with the format polkadot-stableYYMM(-X)-rcX or polkadot-stableYYMM(-X)
16
16
required: true
17
17
type: string
18
+
<<<<<<< HEAD
19
+
=======
20
+
build_run_id:
21
+
description: Run ID of the current release workflow run to be used to download the artifacts
22
+
required: true
23
+
type: string
24
+
runtimes:
25
+
description: Runtimes to be published (⚠️ this needs to be provided in case of the complete release, for the crates only release or a patch release without runtimes it is not needed)
26
+
no_runtimes:
27
+
description: If true, release draft will be published without runtimes
28
+
required: true
29
+
type: boolean
30
+
default: false
31
+
crates_only:
32
+
description: If true, release draft will contain only release notes and no artifacts will be published (needed for stable releases that are crates only)
33
+
required: true
34
+
type: boolean
35
+
default: false
36
+
workflow_call:
37
+
inputs:
38
+
release_tag:
39
+
description: Tag matching the actual release candidate with the format polkadot-stableYYMM(-X)-rcY or polkadot-stableYYMM(-X)
40
+
required: true
41
+
type: string
42
+
build_run_id:
43
+
description: Run ID of the current release workflow run to be used to download the artifacts
44
+
required: true
45
+
type: string
46
+
runtimes:
47
+
description: Runtimes to be published
48
+
type: string
49
+
no_runtimes:
50
+
description: If true, release draft will be published without runtimes
51
+
required: true
52
+
type: boolean
53
+
default: false
54
+
crates_only:
55
+
description: If true, release draft will contain only release notes and no artifacts will be published (needed for stable releases that are crates only)
56
+
required: true
57
+
type: boolean
58
+
default: false
59
+
>>>>>>> 822943a1 ([Release|CI/CD] Create draft release without runtimes or any artefacts attached (for crates only releases) (#10379))
0 commit comments