Set the update values stage to set the tag branchname-commithash and fix the pipeline to not clone in update backend values stage

This commit is contained in:
dvirlabs 2025-06-18 04:20:44 +03:00
parent 767b753f70
commit 769c04c399
3 changed files with 3 additions and 3 deletions

View File

@ -58,7 +58,7 @@ steps:
- apk add --no-cache git yq
- git config --global user.name "woodpecker-bot"
- git config --global user.email "ci@dvirlabs.com"
- git clone "https://${GIT_USERNAME}:${GIT_TOKEN}@git.dvirlabs.com/dvirlabs/my-apps.git"
- git clone "https://$${GIT_USERNAME}:$${GIT_TOKEN}@git.dvirlabs.com/dvirlabs/my-apps.git"
- cd my-apps
- |
TAG="${CI_COMMIT_BRANCH}-${CI_COMMIT_SHA:0:7}"
@ -85,7 +85,6 @@ steps:
- apk add --no-cache git yq
- git config --global user.name "woodpecker-bot"
- git config --global user.email "ci@dvirlabs.com"
- git clone "https://${GIT_USERNAME}:${GIT_TOKEN}@git.dvirlabs.com/dvirlabs/my-apps.git"
- cd my-apps
- |
TAG="${CI_COMMIT_BRANCH}-${CI_COMMIT_SHA:0:7}"

View File

@ -81,5 +81,6 @@ def list_icons():
return categories
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=8000)