We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73a9c02 commit b7a1f52Copy full SHA for b7a1f52
.github/workflows/release.yml
@@ -130,6 +130,11 @@ jobs:
130
cp downloaded_artifacts/subtree_linux/subtree_linux "${BUNDLE_DIR}/linux-x86_64/subtree"
131
cp downloaded_artifacts/subtree_linux_aarch64/subtree_linux_aarch64 "${BUNDLE_DIR}/linux-arm64/subtree"
132
133
+ # Make binaries executable (critical for Swift PM to run them)
134
+ chmod +x "${BUNDLE_DIR}/macos/subtree"
135
+ chmod +x "${BUNDLE_DIR}/linux-x86_64/subtree"
136
+ chmod +x "${BUNDLE_DIR}/linux-arm64/subtree"
137
+
138
# Create artifact bundle manifest
139
cat > "${BUNDLE_DIR}/info.json" << EOF
140
{
0 commit comments