Skip to content

Commit b8f70e0

Browse files
author
Matthew Hawkins
committed
Fix msvc renaming
1 parent 3fa8854 commit b8f70e0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release-bins.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -171,11 +171,11 @@ jobs:
171171
# Remove trailing slash and leading parent
172172
RELEASE=${RELEASE%/}
173173
RELEASE=${RELEASE#"release/"}
174-
RELEASE=${RELEASE/x86_64-pc-windows-gnullvm/x86_64-pc-windows-msvc}
175-
RELEASE=${RELEASE/aarch64-pc-windows-gnullvm/aarch64-pc-windows-msvc}
174+
RENAMED=${RELEASE/x86_64-pc-windows-gnullvm/x86_64-pc-windows-msvc}
175+
RENAMED=${RENAMED/aarch64-pc-windows-gnullvm/aarch64-pc-windows-msvc}
176176
177177
echo "Creating an artifact for $RELEASE"
178-
tar -C release/$RELEASE -cf - dist/ | gzip -9 > artifacts/apollo-mcp-server-$VERSION-$RELEASE.tar.gz
178+
tar -C release/$RELEASE -cf - dist/ | gzip -9 > artifacts/apollo-mcp-server-$VERSION-RENAMED.tar.gz
179179
done
180180
181181
- name: Upload release artifacts

0 commit comments

Comments
 (0)