Skip to content

Commit 6b70bfb

Browse files
committed
fix(release): Use subshell for cd so ls sees correct path
Made-with: Cursor
1 parent 215a757 commit 6b70bfb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ jobs:
135135
cp scripts/install.sh dist/install.sh
136136
cp scripts/install.ps1 dist/install.ps1
137137
chmod +x dist/install.sh
138-
cd dist && sha256sum *.tar.gz *.zip *.msi 2>/dev/null > SHA256SUMS.txt || true
138+
(cd dist && sha256sum *.tar.gz *.zip *.msi 2>/dev/null > SHA256SUMS.txt) || true
139139
echo "=== Release assets ==="
140140
ls -lh dist/
141141

0 commit comments

Comments
 (0)