We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 730f500 commit 181cc0eCopy full SHA for 181cc0e
release-automation/bump-version.sh
@@ -1,5 +1,5 @@
1
#!/bin/bash
2
-set -e
+set -eo pipefail
3
4
# Usage: ./bump-version.sh <version>
5
VERSION="$1"
@@ -16,7 +16,7 @@ uv version "$VERSION"
16
uv run ./compile_proto.sh
17
18
# Update OpenAPI client
19
-curl -H "Authorization: token $GH_TOKEN" \
+curl --fail-with-body -sS -H "Authorization: token $GH_TOKEN" \
20
-H "Accept: application/vnd.github.v3.raw" \
21
-L "https://raw.githubusercontent.com/fishjam-cloud/fishjam/main/openapi.yaml" \
22
-o openapi.yaml
0 commit comments