Skip to content

Commit c17aeef

Browse files
ci(release): fix shellcheck SC2005 in mcp-publisher download step (#72)
Replace `echo "$(pwd)"` with `pwd` directly when appending to GITHUB_PATH. Fixes actionlint failure on main.
1 parent e8ec854 commit c17aeef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ jobs:
298298
echo "Downloading mcp-publisher from: $URL"
299299
curl -fsSL "$URL" | tar xz mcp-publisher
300300
chmod +x mcp-publisher
301-
echo "$(pwd)" >> "$GITHUB_PATH"
301+
pwd >> "$GITHUB_PATH"
302302
303303
- name: Authenticate with GitHub OIDC
304304
run: mcp-publisher login github-oidc

0 commit comments

Comments
 (0)