Skip to content

Commit 730f500

Browse files
Don't use asdf in the bump-version script
1 parent 0889d54 commit 730f500

1 file changed

Lines changed: 1 addition & 15 deletions

File tree

release-automation/bump-version.sh

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -12,28 +12,14 @@ fi
1212
BRANCH_NAME="release-$VERSION"
1313
git checkout -b "$BRANCH_NAME"
1414

15-
echo "Installing asdf dependencies..."
16-
# add plugins from .tool-versions
17-
while read -r line; do
18-
PLUGIN_NAME=$(echo "$line" | awk '{print $1}')
19-
if ! asdf plugin list | grep -q "^$PLUGIN_NAME$"; then
20-
echo "Adding asdf plugin: $PLUGIN_NAME"
21-
asdf plugin add "$PLUGIN_NAME"
22-
else
23-
echo "asdf plugin $PLUGIN_NAME already added"
24-
fi
25-
done < .tool-versions
26-
27-
asdf install
28-
2915
uv version "$VERSION"
3016
uv run ./compile_proto.sh
3117

3218
# Update OpenAPI client
3319
curl -H "Authorization: token $GH_TOKEN" \
3420
-H "Accept: application/vnd.github.v3.raw" \
3521
-L "https://raw.githubusercontent.com/fishjam-cloud/fishjam/main/openapi.yaml" \
36-
-o openapi.yaml
22+
-o openapi.yaml
3723

3824
uv run update_client ./openapi.yaml
3925
rm openapi.yaml

0 commit comments

Comments
 (0)