Skip to content

Commit

Permalink
Merge branch 'fix_launchapd_workflow' into 'main'
Browse files Browse the repository at this point in the history
Fix if check in the launchpad workflow

See merge request app-frameworks/esp-matter!269
  • Loading branch information
dhrishi committed Jan 12, 2023
2 parents 6e6448f + 693064b commit 13468e8
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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
Expand Down

0 comments on commit 13468e8

Please sign in to comment.