Skip to content

Commit 5c5081f

Browse files
authored
release(ts): polykey, nodus (#32)
* ci: update ci for py and ts, ts version bump
1 parent cf4ac32 commit 5c5081f

File tree

8 files changed

+28
-32
lines changed

8 files changed

+28
-32
lines changed

.changeset/chubby-peaches-fail.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/long-parents-follow.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/poor-islands-jam.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.github/workflows/build.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,14 @@ jobs:
130130
${{ steps.lower-tag.outputs.repo_lower }}:latest \
131131
sh -c "npm run build"
132132
133+
- name: Generate Python protobuf files (inside Docker)
134+
run: |
135+
docker run --rm \
136+
-v ${{ github.workspace }}:/app \
137+
-w /app \
138+
${{ steps.lower-tag.outputs.repo_lower }}:latest \
139+
sh -c "make gen-py && make update-py-package"
140+
133141
- name: Run tests inside Docker
134142
run: |
135143
docker run --rm \

.github/workflows/py-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
name: "Spounge/proto Python Package Release"
1+
name: "spounge/proto-py package release"
22

33
on:
44
push:
5-
branches: [python]
5+
branches: [py-release]
66
paths:
77
- 'proto/**'
88
- 'gen/py/**'

.github/workflows/ts-proto-gen.yml renamed to .github/workflows/ts-release.yml

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,15 @@
1-
name: "Spounge/proto Package Release"
1+
name: "spounge/proto-ts package release"
22

33
on:
44
push:
5-
branches: [release]
5+
branches: [ts-release]
66
paths:
77
- 'proto/**'
88
- 'gen/ts/**'
99
- 'gen/go/**'
1010
- '.changeset/**'
11-
- '.github/workflows/ts-proto-gen.yml'
1211
- 'package.json'
13-
14-
pull_request:
15-
branches: [release]
16-
paths:
17-
- 'proto/**'
18-
- 'gen/ts/**'
19-
- 'gen/go/**'
20-
- '.changeset/**'
21-
- '.github/workflows/ts-proto-gen.yml'
22-
- 'package.json'
23-
12+
2413
jobs:
2514
release:
2615
runs-on: ubuntu-latest

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# @spounge/proto
22

3+
## 2.1.0
4+
5+
### Minor Changes
6+
7+
- [release]: nodus and polykey implementation
8+
9+
### Patch Changes
10+
11+
- [#25](https://github.com/spounge-ai/spounge-proto/pull/25) [`001be2c`](https://github.com/spounge-ai/spounge-proto/commit/001be2c1fedbf190afc6948cf42966f1fcf884f0) Thanks [@Evantopian](https://github.com/Evantopian)! - [@Spounge/proto-ts] - ConnectRPC update
12+
13+
- [#23](https://github.com/spounge-ai/spounge-proto/pull/23) [`7b1f225`](https://github.com/spounge-ai/spounge-proto/commit/7b1f2251107c64f821c0799660b754e182f03366) Thanks [@Evantopian](https://github.com/Evantopian)! - [Hotfix] - Dependency Check
14+
15+
- [#25](https://github.com/spounge-ai/spounge-proto/pull/25) [`001be2c`](https://github.com/spounge-ai/spounge-proto/commit/001be2c1fedbf190afc6948cf42966f1fcf884f0) Thanks [@Evantopian](https://github.com/Evantopian)! - [Patch] - Easier package consumption generation
16+
317
## 2.0.2
418

519
### Patch Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@spounge/proto",
3-
"version": "2.0.4",
3+
"version": "2.1.0",
44
"description": "Shared protobuf definitions for Spounge microservices",
55
"main": "gen/ts/index.js",
66
"types": "gen/ts/index.d.ts",

0 commit comments

Comments
 (0)