fix: test action
Create a new service / deploy (push) Successful in 1s
Deploy a service / deploy (push) Failing after 1s

This commit is contained in:
Benjamin Labrecque
2026-07-02 11:55:37 +02:00
parent 085bb04ffb
commit 19a8a89080
+14 -9
View File
@@ -10,18 +10,23 @@ jobs:
runs-on: hla-dev
defaults:
run:
working-directory: ./.gitea
working-directory: ./services
env:
SERVICES_DIR=/sls/bd/hla/services/dev
SVC_CURRRENT_DIR=${SERVICES_DIR}/000-master/current
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Test
- name: Copy files
run: |
ls
# - name: Create Python venv
# run: |
# cd ${}
# uv venv --allow-existing --system-site-packages .venv
# uv sync
mkdir -p ${SVC_CURRRENT_DIR}
cp -r 000-master ${SVC_CURRRENT_DIR}
- name: Create Python venv
run: |
cd ${SVC_CURRRENT_DIR}/app
uv venv --allow-existing --system-site-packages .venv
uv sync