Fix outputs
This commit is contained in:
parent
d558e30958
commit
654d97df9f
5
.github/workflows/workflow.yml
vendored
5
.github/workflows/workflow.yml
vendored
@ -8,7 +8,8 @@ env:
|
||||
jobs:
|
||||
check-changes:
|
||||
runs-on: ubuntu-latest
|
||||
continue-on-error: true
|
||||
outputs:
|
||||
all_changed_and_modified_files_count: ${{ steps.changed-files.outputs.all_changed_and_modified_files_count }}
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@v2
|
||||
@ -25,7 +26,7 @@ jobs:
|
||||
build:
|
||||
needs: check-changes
|
||||
runs-on: ubuntu-latest
|
||||
if: steps.changed-files.outputs.all_changed_and_modified_files_count >= 2
|
||||
if: ${{ needs.check-changes.outputs >= 2 }}
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user