Skip to content

Commit 997c751

Browse files
authored
Remove static build on CI (#2372)
1 parent 602619b commit 997c751

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

scripts/release/create-api-downloads-pr.sh

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,20 +31,18 @@ git checkout -b "$BRANCH_NAME"
3131
generate_config() {
3232
local project=$1
3333
local version=$2
34-
local suffix=$3
3534

3635
if [ -d "$HOME" ]; then
37-
cat <<- EOF > "config/$project$suffix/$version.yaml"
36+
cat <<- EOF > "config/$project/$version.yaml"
3837
api-downloads: v2
3938
4039
bundles:
41-
ios: MapboxMaps$suffix
40+
ios: MapboxMaps
4241
EOF
4342
fi
4443
}
4544

46-
generate_config "$PROJECT_ROOT" "$VERSION" ""
47-
generate_config "$PROJECT_ROOT" "$VERSION" "-static"
45+
generate_config "$PROJECT_ROOT" "$VERSION"
4846

4947
#
5048
# Commit to branch

0 commit comments

Comments
 (0)