Skip to content

Commit 68b3903

Browse files
committed
ci: fix release and swagger version
1 parent 4d7fdd4 commit 68b3903

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- name: Cross-compile
4848
run: cd client && make cross VERSION=${{ steps.version.outputs.version }}
4949
- name: Build deb (amd64)
50-
run: cd client && make deb VERSION=${{ steps.version.outputs.version }}
50+
run: cd client && ./scripts/build-deb.sh ./build/gpg-attest-linux-amd64 ${{ steps.version.outputs.version }} amd64
5151
- name: Build deb (arm64)
5252
run: cd client && ./scripts/build-deb.sh ./build/gpg-attest-linux-arm64 ${{ steps.version.outputs.version }} arm64
5353
- name: Build rpm (x86_64)

server/cmd/gpg-attest-server/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
)
2222

2323
// @title gpg-attest-server API
24-
// @version 0.1.0
24+
// @version 0.2.0
2525
// @description Transparency log for GPG-signed attestations on digital content.
2626
// @description Stores entries in a Trillian Merkle tree, indexes by artifact SHA-256 via Redis,
2727
// @description and signs each entry with the server's GPG key.

server/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ require (
77
github.com/redis/go-redis/v9 v9.18.0
88
github.com/swaggo/http-swagger/v2 v2.0.2
99
github.com/swaggo/swag v1.16.6
10+
golang.org/x/time v0.15.0
1011
google.golang.org/grpc v1.71.0
1112
)
1213

@@ -27,7 +28,6 @@ require (
2728
golang.org/x/sync v0.12.0 // indirect
2829
golang.org/x/sys v0.31.0 // indirect
2930
golang.org/x/text v0.23.0 // indirect
30-
golang.org/x/time v0.15.0 // indirect
3131
golang.org/x/tools v0.31.0 // indirect
3232
google.golang.org/genproto/googleapis/rpc v0.0.0-20250303144028-a0af3efb3deb // indirect
3333
google.golang.org/protobuf v1.36.5 // indirect

0 commit comments

Comments
 (0)