Skip to content

Commit 7201be1

Browse files
author
Antoine Toussaint
committed
update: changes
1 parent 895582e commit 7201be1

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/codefly-dev/service-python-fastapi
33
go 1.22.0
44

55
require (
6-
github.com/codefly-dev/core v0.1.76
6+
github.com/codefly-dev/core v0.1.77
77
github.com/hashicorp/go-multierror v1.1.1
88
google.golang.org/grpc v1.63.0
99
)

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ github.com/cenkalti/backoff/v4 v4.2.1 h1:y4OZtCnogmCPw98Zjyt5a6+QwPLGkiQsYW5oUqy
2020
github.com/cenkalti/backoff/v4 v4.2.1/go.mod h1:Y3VNntkOUPxTVeUxJ/G5vcM//AlwfmyYozVcomhLiZE=
2121
github.com/cheggaaa/pb/v3 v3.1.5 h1:QuuUzeM2WsAqG2gMqtzaWithDJv0i+i6UlnwSCI4QLk=
2222
github.com/cheggaaa/pb/v3 v3.1.5/go.mod h1:CrxkeghYTXi1lQBEI7jSn+3svI3cuc19haAj6jM60XI=
23-
github.com/codefly-dev/core v0.1.76 h1:6JNvsT+jvos/6NEYmvgHErmz9ad+CiDEm1t0HeNStF0=
24-
github.com/codefly-dev/core v0.1.76/go.mod h1:mZ5m3VQYixwPHF/0+b6+D3M1XwtQG4ugxwXSTPs5A64=
23+
github.com/codefly-dev/core v0.1.77 h1:ANfUMCjtI1OG7Xl63gi/2VhbFj9WZeuuQKmgl/VtXSQ=
24+
github.com/codefly-dev/core v0.1.77/go.mod h1:mZ5m3VQYixwPHF/0+b6+D3M1XwtQG4ugxwXSTPs5A64=
2525
github.com/containerd/log v0.1.0 h1:TCJt7ioM2cr/tfR8GPbGf9/VRAX8D2B4PjzCpfX540I=
2626
github.com/containerd/log v0.1.0/go.mod h1:VRRf09a7mHDIRezVKTRCrOq78v577GXq3bSa3EhrzVo=
2727
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=

scripts/publish/push.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ if [ ! -f "$YAML_FILE" ]; then
3232
exit 1
3333
fi
3434

35-
CURRENT_VERSION=$(yq -rval '.version' "$YAML_FILE")
35+
CURRENT_VERSION=$(yq -r '.version' "$YAML_FILE")
3636

3737
git push -f
3838
git push origin "v$CURRENT_VERSION" -f

scripts/publish/re_tag.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if [ ! -f "$YAML_FILE" ]; then
77
exit 1
88
fi
99

10-
CURRENT_VERSION=$(yq -rval '.version' "$YAML_FILE")
10+
CURRENT_VERSION=$(yq -r '.version' "$YAML_FILE")
1111
NEW_VERSION="$CURRENT_VERSION"
1212

1313
# Update the version in the YAML file (for macOS)

scripts/publish/tag.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ fi
1313
# Argument is patch/minor/major and defaults to patch
1414
NEW_VERSION_TYPE=${1:-patch}
1515

16-
CURRENT_VERSION=$(yq -rval '.version' "$YAML_FILE")
16+
CURRENT_VERSION=$(yq -r '.version' "$YAML_FILE")
1717
NEW_VERSION=$(semver bump "$NEW_VERSION_TYPE" "$CURRENT_VERSION")
1818

1919
# Update the version in the YAML file (for macOS)

0 commit comments

Comments
 (0)