Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions release-automation/bump-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@ while read -r line; do
else
echo "asdf plugin $PLUGIN_NAME already added"
fi
done < .tool-versions
done <.tool-versions

asdf install

uv version "$VERSION"
uv run ./compile_proto.sh

# Update OpenAPI client
curl -H "Authorization: token $GH_TOKEN" \
curl --fail-with-body -sS -H "Authorization: token $GH_TOKEN" \
-H "Accept: application/vnd.github.v3.raw" \
-L "https://raw.githubusercontent.com/fishjam-cloud/fishjam/main/openapi.yaml" \
-o openapi.yaml
-o openapi.yaml

uv run update_client ./openapi.yaml
rm openapi.yaml
Expand Down
Loading