Skip to content

Commit

Permalink
ci(PR): correct the path of build input
Browse files Browse the repository at this point in the history
  • Loading branch information
clearloop committed Jan 16, 2024
1 parent 7fcb03f commit 5cdc4ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/PR.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,14 @@ jobs:

check:
needs: status
if: ${{ needs.status.outputs.check }}
if: ${{ needs.status.steps.config.outputs.check }}
uses: ./.github/workflows/check.yml
with:
cache: ${{ needs.status.steps.config.outputs.cache }}

build:
needs: status
if: ${{ needs.status.outputs.build }}
if: ${{ needs.status.steps.config.outputs.build }}
uses: ./.github/workflows/build.yml
with:
cache: ${{ needs.status.steps.config.outputs.cache }}
Expand Down

0 comments on commit 5cdc4ae

Please sign in to comment.