Fix cicd workflow output
All checks were successful
pyzebra CI/CD pipeline / test-env (push) Successful in 1m54s
pyzebra CI/CD pipeline / prod-env (push) Has been skipped
pyzebra CI/CD pipeline / cleanup (push) Successful in 1s

This commit is contained in:
2026-02-23 16:03:22 +01:00
parent e6e97be58a
commit 72b8de71d2

View File

@@ -20,8 +20,8 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
- run: $CONDA/bin/conda build --no-anaconda-upload --output-folder $BUILD_DIR ./conda-recipe
- run: $CONDA/bin/conda remove --name test --all --keep-env -y
- run: $CONDA/bin/conda install --name test --channel $BUILD_DIR python=3.10 pyzebra -y
- run: $CONDA/bin/conda remove -y -q --name test --all --keep-env
- run: $CONDA/bin/conda install -y -q --name test --channel $BUILD_DIR python=3.10 pyzebra
- run: sudo systemctl restart pyzebra-test.service
prod-env:
@@ -33,8 +33,8 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
- run: $CONDA/bin/conda build --token ${{ secrets.ANACONDA_TOKEN }} --output-folder $BUILD_DIR ./conda-recipe
- run: $CONDA/bin/conda remove --name prod --all --keep-env -y
- run: $CONDA/bin/conda install --name prod --channel $BUILD_DIR python=3.10 pyzebra -y
- run: $CONDA/bin/conda remove -y -q --name prod --all --keep-env
- run: $CONDA/bin/conda install -y -q --name prod --channel $BUILD_DIR python=3.10 pyzebra
- run: sudo systemctl restart pyzebra-prod.service
cleanup: