Skip to content

Commit 5c7fdc5

Browse files
satterlyclaude
andcommitted
Fix release workflow multi-line run commands
The run: blocks need | for multi-line commands, otherwise YAML concatenates them into a single line. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent e5d72ec commit 5c7fdc5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
python-version: 3.11
2020
- name: Install dependencies
2121
id: install-deps
22-
run:
22+
run: |
2323
python3 -m pip install --upgrade pip
2424
pip install -r requirements.txt
2525
- name: nitpick
@@ -48,7 +48,7 @@ jobs:
4848
python-version: 3.11
4949
- name: Install dependencies
5050
id: install-deps
51-
run:
51+
run: |
5252
python3 -m pip install --upgrade pip
5353
pip install -r requirements.txt
5454
- name: Build HTML

0 commit comments

Comments
 (0)