Fix if check in the launchpad workflow

This commit is contained in:
Shubham Patil
2023-01-11 23:45:58 +05:30
parent 6e6448f1cb
commit 693064b2fd
+1 -3
View File
@@ -39,7 +39,7 @@ concurrency:
jobs:
Build:
# Disable the job in forks
if: ${{ github.repository_owner == 'espressif' }}
if: ${{ github.repository_owner == 'espressif' && github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
container:
@@ -49,8 +49,6 @@ jobs:
build-dir: ['examples/light', 'examples/light_switch']
targets: ['esp32', 'esp32c3']
if: ${{ github.event.workflow_run.conclusion == 'success' }}
steps:
- run: mkdir -p images
- name: build application