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/on_release_notes.yml
+4-2Lines changed: 4 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ on:
31
31
workflow_dispatch:
32
32
inputs:
33
33
version_to_publish:
34
-
description: "Version to be released in PyPi, Docs, and Lambda Layer, e.g. v2.0.0, v2.0.0.a0 (pre-release)"
34
+
description: "Version to be released in PyPi, Docs, and Lambda Layer, e.g. v2.0.0, v2.0.0a0 (pre-release)"
35
35
default: v2.0.0
36
36
required: true
37
37
skip_pypi:
@@ -51,7 +51,7 @@ on:
51
51
type: boolean
52
52
required: false
53
53
pre_release:
54
-
description: "Publishes documentation using a pre-release tag (v2.0.0.a0). You are still responsible for passing a pre-release version tag to the workflow."
54
+
description: "Publishes documentation using a pre-release tag (v2.0.0a0). You are still responsible for passing a pre-release version tag to the workflow."
55
55
default: false
56
56
type: boolean
57
57
required: false
@@ -95,6 +95,8 @@ jobs:
95
95
- name: Build python package and wheel
96
96
if: ${{ !inputs.skip_pypi }}
97
97
run: poetry build
98
+
# NOTE: TestPyPi is undergoing a CDN migration https://status.python.org/#
99
+
# re-enable for the next release, when degraded status changes
0 commit comments