fix: auto-update version (#2052)
This commit is contained in:
parent
b1acf9dc2c
commit
7fefe408b4
|
@ -0,0 +1,19 @@
|
||||||
|
{
|
||||||
|
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
|
||||||
|
"release-type": "simple",
|
||||||
|
"version-file": "version.txt",
|
||||||
|
"extra-files": [
|
||||||
|
{
|
||||||
|
"type": "toml",
|
||||||
|
"path": "pyproject.toml",
|
||||||
|
"jsonpath": "$.tool.poetry.version"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "generic",
|
||||||
|
"path": "docker-compose.yaml"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"packages": {
|
||||||
|
".": {}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
".": "0.6.1"
|
||||||
|
}
|
|
@ -13,7 +13,8 @@ jobs:
|
||||||
release-please:
|
release-please:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: google-github-actions/release-please-action@v3
|
- uses: google-github-actions/release-please-action@v4
|
||||||
|
id: release
|
||||||
with:
|
with:
|
||||||
release-type: simple
|
config-file: .github/release_please/.release-please-config.json
|
||||||
version-file: version.txt
|
manifest-file: .github/release_please/.release-please-manifest.json
|
||||||
|
|
|
@ -7,7 +7,7 @@ services:
|
||||||
# Private-GPT service for the Ollama CPU and GPU modes
|
# Private-GPT service for the Ollama CPU and GPU modes
|
||||||
# This service builds from an external Dockerfile and runs the Ollama mode.
|
# This service builds from an external Dockerfile and runs the Ollama mode.
|
||||||
private-gpt-ollama:
|
private-gpt-ollama:
|
||||||
image: ${PGPT_IMAGE:-zylonai/private-gpt}${PGPT_TAG:-0.6.1}-ollama
|
image: ${PGPT_IMAGE:-zylonai/private-gpt}${PGPT_TAG:-0.6.1}-ollama # x-release-please-version
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
dockerfile: Dockerfile.ollama
|
dockerfile: Dockerfile.ollama
|
||||||
|
@ -31,7 +31,7 @@ services:
|
||||||
# Private-GPT service for the local mode
|
# Private-GPT service for the local mode
|
||||||
# This service builds from a local Dockerfile and runs the application in local mode.
|
# This service builds from a local Dockerfile and runs the application in local mode.
|
||||||
private-gpt-llamacpp-cpu:
|
private-gpt-llamacpp-cpu:
|
||||||
image: ${PGPT_IMAGE:-zylonai/private-gpt}${PGPT_TAG:-0.6.1}-llamacpp-cpu
|
image: ${PGPT_IMAGE:-zylonai/private-gpt}${PGPT_TAG:-0.6.1}-llamacpp-cpu # x-release-please-version
|
||||||
build:
|
build:
|
||||||
context: .
|
context: .
|
||||||
dockerfile: Dockerfile.llamacpp-cpu
|
dockerfile: Dockerfile.llamacpp-cpu
|
||||||
|
|
Loading…
Reference in New Issue