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 0fdb626833

View File

@@ -21,7 +21,7 @@ jobs:
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 install -y -q --name test --channel $BUILD_DIR python=3.10 pyzebra
- run: sudo systemctl restart pyzebra-test.service
prod-env:
@@ -34,7 +34,7 @@ jobs:
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 install -y -q --name prod --channel $BUILD_DIR python=3.10 pyzebra
- run: sudo systemctl restart pyzebra-prod.service
cleanup: