Skip to content

Commit 0f31f4a

Browse files
committed
Update version to 0.2.4-3 and update paths to my GHCR
1 parent b3a3af6 commit 0f31f4a

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
branches:
66
- release # Trigger when commits are pushed to the release branch (e.g., after merging master)
7+
- rocm-release
78
paths-ignore:
89
- '**.md'
910
- 'docs/**'

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# Contributing to Kokoro-FastAPI
22

3-
Always appreciate community involvement in making this project better.
3+
Always appreciate community involvement in making this project better.
44

55
## Development Setup
66

77
We use `uv` for managing Python environments and dependencies, and `ruff` for linting and formatting.
88

99
1. **Clone the repository:**
1010
```bash
11-
git clone https://github.com/remsky/Kokoro-FastAPI.git
11+
git clone https://github.com/kprinssu/Kokoro-FastAPI.git
1212
cd Kokoro-FastAPI
1313
```
1414

@@ -38,7 +38,7 @@ We use `uv` for managing Python environments and dependencies, and `ruff` for li
3838
3939
## Running Tests
4040
41-
Before submitting changes, please ensure all tests pass as this is a automated requirement. The tests are run using `pytest`.
41+
Before submitting changes, please ensure all tests pass as this is a automated requirement. The tests are run using `pytest`.
4242
```bash
4343
# Make sure your virtual environment is activated
4444
uv run pytest
@@ -59,7 +59,7 @@ This command will build the Docker images (if they've changed) and start the ser
5959
6060
## Code Formatting and Linting
6161
62-
We use `ruff` to maintain code quality and consistency. Please format and lint your code before committing.
62+
We use `ruff` to maintain code quality and consistency. Please format and lint your code before committing.
6363
6464
1. **Format the code:**
6565
```bash

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.4-2
1+
0.2.4-3

charts/kokoro-fastapi/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
kokoroTTS:
55
replicaCount: 1
66
# The name of the deployment repository
7-
repository: "ghcr.io/remsky/kokoro-fastapi-gpu"
7+
repository: "ghcr.io/kprinssu/kokoro-fastapi-gpu"
88
imagePullSecrets: [] # Set if using a private image or getting rate limited
99
tag: "latest"
1010
pullPolicy: Always

docker-bake.hcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ variable "REGISTRY" {
88
}
99

1010
variable "OWNER" {
11-
default = "remsky"
11+
default = "kprinssu"
1212
}
1313

1414
variable "REPO" {

0 commit comments

Comments
 (0)