-CI: fix: deploy must run if tests were sccessful or skipped

This commit is contained in:
mahee96
2025-02-27 04:57:34 +05:30
parent cec3825de0
commit 6a56fbd206

View File

@@ -80,7 +80,8 @@ jobs:
secrets: inherit
deploy:
needs: [serialize, build, tests-build, tests-run]
needs: [serialize, build, tests-build, tests-run] # Keep tests-run in needs
if: ${{ always() && (needs.tests-run.result == 'skipped' || needs.tests-run.result == 'success') }}
uses: ./.github/workflows/sidestore-deploy.yml
with:
is_beta: ${{ inputs.is_beta }}