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
Copy file name to clipboardExpand all lines: .github/workflows/docker-nightly-build.yml
+35-56Lines changed: 35 additions & 56 deletions
Original file line number
Diff line number
Diff line change
@@ -12,14 +12,6 @@ on:
12
12
required: true
13
13
type: string
14
14
description: "Ref to check out (branch, tag, or commit). This is required -- it specifies where the source code for the release is located."
15
-
main_version:
16
-
required: false
17
-
type: string
18
-
description: "Override main version for tagging. If not provided, will be extracted from pyproject.toml."
19
-
base_version:
20
-
required: false
21
-
type: string
22
-
description: "Override base version for tagging. If not provided, will be extracted from pyproject.toml."
23
15
push_to_registry:
24
16
required: false
25
17
type: boolean
@@ -39,15 +31,7 @@ on:
39
31
ref:
40
32
required: true
41
33
type: string
42
-
description: "Ref to check out (branch, tag, or commit). This is required -- it specifies where the source code for the release is located."
43
-
main_version:
44
-
description: "Override main version for tagging. If not provided, will be extracted from pyproject.toml."
45
-
required: false
46
-
type: string
47
-
base_version:
48
-
description: "Override base version for tagging. If not provided, will be extracted from pyproject.toml."
49
-
required: false
50
-
type: string
34
+
description: "Ref to check out (branch, tag, or commit). This is required -- it specifies where the source code for the release is located. Note that if running via Github Actions, this tag (formatted as, e.g., v1.5.1.dev36) must be manually created and pushed to a branch prior to running the workflow."
51
35
push_to_registry:
52
36
description: "Whether to push images to registries. Set to false for testing builds without publishing."
53
37
required: false
@@ -58,7 +42,6 @@ env:
58
42
PYTHON_VERSION: "3.13"
59
43
60
44
jobs:
61
-
# Nightly Base package builds
62
45
build-nightly-base:
63
46
name: Build Nightly Base Package
64
47
if: ${{ inputs.release_type == 'nightly-base' }}
@@ -72,20 +55,19 @@ jobs:
72
55
- name: Get version for tagging
73
56
id: version
74
57
run: |
75
-
if [ -n "${{ inputs.base_version }}" ]; then
76
-
echo "Using provided base version: ${{ inputs.base_version }}"
0 commit comments