Test the pipeline

This commit is contained in:
dvirlabs 2025-06-18 02:29:39 +03:00
parent 7254b32bc7
commit 0d182514d0
2 changed files with 2 additions and 1 deletions

View File

@ -48,6 +48,7 @@ steps:
name: Update frontend tag in values.yaml name: Update frontend tag in values.yaml
image: alpine:3.19 image: alpine:3.19
when: when:
branch: [ master, develop ]
event: [ push ] event: [ push ]
path: path:
include: [ frontend/** ] include: [ frontend/** ]
@ -78,6 +79,7 @@ steps:
name: Update backend tag in values.yaml name: Update backend tag in values.yaml
image: alpine:3.19 image: alpine:3.19
when: when:
branch: [ master, develop ]
event: [ push ] event: [ push ]
path: path:
include: [ backend/** ] include: [ backend/** ]

View File

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