Skip to content

Conversation

@kazutoiris
Copy link
Contributor

Fix #2257 - When generating GitHub Actions workflows, multi-line commands in run blocks were being automatically escaped with quotes, causing command not found and execution failures.

Before

Renders with unintended quotes inside a multi-line block

- name: "Build assets"
  run: |
    "npm run build"  # ← Quotes break command execution

After

Single-line commands should render as inline strings without quotes

- name: "Build assets"
  run: |
    npm run build

Copy link
Contributor

@mistydemeo mistydemeo left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch, thank you!

@mistydemeo mistydemeo merged commit 68b42aa into axodotdev:main Jan 20, 2026
17 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Unintended quoting of multiline commands in run block

2 participants