Skip to content

Commit 029c58d

Browse files
committed
Fix search path when renaming Linux artifacts
1 parent 9219cd9 commit 029c58d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ jobs:
178178
RELEASE_TAG="v0.0.0"
179179
fi
180180
181-
for file in $(find ./artifacts -type f -name "GitHubDesktop-linux-*"); do
181+
for file in $(find ./dist -type f -name "GitHubDesktop-linux-*"); do
182182
new_name=$(echo "$file" | sed -E "s/GitHubDesktop-linux-(.*)-[0-9]+\\.[0-9]+\\.[0-9]+(-beta[0-9]+)?\\.(.*)/GitHubDesktopPlus-${RELEASE_TAG}-linux-\\1.\\3/")
183183
new_name=$(echo $new_name | sed -E "s/linux-amd64/linux-x86_64/")
184184
new_name=$(echo $new_name | sed -E "s/linux-aarch64/linux-arm64/")

0 commit comments

Comments
 (0)