ci: fix skip tests build workflow (take 3)
This commit is contained in:
parent
b767733f89
commit
19ddfd6397
13
.github/workflows/build.yml
vendored
13
.github/workflows/build.yml
vendored
|
@ -253,17 +253,6 @@ jobs:
|
|||
path: playwright/test-results/
|
||||
if-no-files-found: ignore
|
||||
|
||||
tests-skip:
|
||||
name: Quick Run
|
||||
if: ${{ github.event.inputs.skiptests == 'true' }}
|
||||
needs: [prepare]
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Prepare for tests
|
||||
run: |
|
||||
echo "Quick run mode, skipping tests..."
|
||||
|
||||
# -----------------------------------------------------------------
|
||||
# RELEASE
|
||||
# -----------------------------------------------------------------
|
||||
|
@ -453,7 +442,7 @@ jobs:
|
|||
# -----------------------------------------------------------------
|
||||
sandbox:
|
||||
name: Deploy to Sandbox
|
||||
if: ${{ success() && github.event.inputs.sandbox == 'true' }}
|
||||
if: ${{ !failure() && !cancelled() && github.event.inputs.sandbox == 'true' }}
|
||||
needs: [prepare, release]
|
||||
runs-on: [self-hosted, dev-server]
|
||||
env:
|
||||
|
|
Loading…
Reference in a new issue