Skip to content
This repository was archived by the owner on Jan 20, 2026. It is now read-only.

Commit a84801b

Browse files
authored
Integrate UCI versioning and release (#113)
Integrate UCI versioning and release into `sei-db` and create the version file for the latest tagged semver currently present. Upgrade UCI Go lint to latest while at it.
1 parent 177aea7 commit a84801b

4 files changed

Lines changed: 42 additions & 1 deletion

File tree

.github/workflows/uci-go-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ concurrency:
1717
jobs:
1818
go-lint:
1919
name: Go
20-
uses: sei-protocol/uci/.github/workflows/go-lint.yml@v0.0.1
20+
uses: sei-protocol/uci/.github/workflows/go-lint.yml@v0.0.2
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: UCI
2+
3+
on:
4+
pull_request_target:
5+
paths: [ 'version.json' ]
6+
types: [ opened, synchronize, reopened, labeled, unlabeled ]
7+
workflow_dispatch:
8+
9+
permissions:
10+
contents: write
11+
pull-requests: write
12+
13+
concurrency:
14+
group: ${{ github.workflow }}-${{ github.ref }}
15+
cancel-in-progress: true
16+
17+
jobs:
18+
release-check:
19+
name: Release
20+
uses: sei-protocol/uci/.github/workflows/release-check.yml@v0.0.2
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: UCI
2+
3+
on:
4+
push:
5+
paths: [ 'version.json' ]
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: write
10+
11+
concurrency:
12+
group: ${{ github.workflow }}-${{ github.sha }}
13+
cancel-in-progress: true
14+
15+
jobs:
16+
releaser:
17+
name: Release
18+
uses: sei-protocol/uci/.github/workflows/release-publish.yml@v0.0.2

version.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"version": "v0.0.54"
3+
}

0 commit comments

Comments
 (0)