Skip to content

Commit 7674bc8

Browse files
committed
chore: auto-update version
1 parent f8483c6 commit 7674bc8

File tree

4 files changed

+28
-5
lines changed

4 files changed

+28
-5
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
3+
"release-type": "simple",
4+
"version-file": "version.txt",
5+
"extra-files": [
6+
{
7+
"type": "toml",
8+
"path": "pyproject.toml",
9+
"jsonpath": "$.tool.poetry.version"
10+
},
11+
{
12+
"type": "generic",
13+
"path": "docker-compose.yaml"
14+
}
15+
],
16+
"packages": {
17+
".": {}
18+
}
19+
}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
".": "0.6.1"
3+
}

.github/workflows/release-please.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@ jobs:
1313
release-please:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: google-github-actions/release-please-action@v3
16+
- uses: google-github-actions/release-please-action@v4
17+
id: release
1718
with:
18-
release-type: simple
19-
version-file: version.txt
19+
config-file: .github/release_please/.release-please-config.json
20+
manifest-file: .github/release_please/.release-please-manifest.json

docker-compose.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ services:
77
# Private-GPT service for the Ollama CPU and GPU modes
88
# This service builds from an external Dockerfile and runs the Ollama mode.
99
private-gpt-ollama:
10-
image: ${PGPT_IMAGE:-zylonai/private-gpt}${PGPT_TAG:-0.6.1}-ollama
10+
image: ${PGPT_IMAGE:-zylonai/private-gpt}${PGPT_TAG:-0.6.1}-ollama # x-release-please-version
1111
build:
1212
context: .
1313
dockerfile: Dockerfile.ollama
@@ -31,7 +31,7 @@ services:
3131
# Private-GPT service for the local mode
3232
# This service builds from a local Dockerfile and runs the application in local mode.
3333
private-gpt-llamacpp-cpu:
34-
image: ${PGPT_IMAGE:-zylonai/private-gpt}${PGPT_TAG:-0.6.1}-llamacpp-cpu
34+
image: ${PGPT_IMAGE:-zylonai/private-gpt}${PGPT_TAG:-0.6.1}-llamacpp-cpu # x-release-please-version
3535
build:
3636
context: .
3737
dockerfile: Dockerfile.llamacpp-cpu

0 commit comments

Comments
 (0)