Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ca774ee

Browse files
authored
1 parent f194bc3 commit ca774ee

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

.github/workflows/prepare-patch-release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ jobs:
88
steps:
99
- uses: actions/checkout@v4
1010

11+
- name: Install toml
12+
run: pip install toml
13+
1114
- run: |
1215
if [[ ! $GITHUB_REF_NAME =~ ^release/v[0-9]+\.[0-9]+\.x-0\.[0-9]+bx$ ]]; then
1316
echo this workflow should only be run against long-term release branches

.github/workflows/prepare-release-branch.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v4
1414

15+
- name: Install toml
16+
run: pip install toml
17+
1518
- name: Verify prerequisites
1619
env:
1720
PRERELEASE_VERSION: ${{ github.event.inputs.prerelease_version }}

.github/workflows/release.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ jobs:
1414
1515
- uses: actions/checkout@v4
1616

17+
- name: Install toml
18+
run: pip install toml
19+
1720
- name: Set environment variables
1821
run: |
1922
stable_version=$(./scripts/eachdist.py version --mode stable)

0 commit comments

Comments
 (0)