Skip to content

Commit

Permalink
ci: Skip outputs if they're empty
Browse files Browse the repository at this point in the history
  • Loading branch information
edmundmiller committed Nov 20, 2024
1 parent 973edb8 commit 99822f7
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,14 @@ jobs:

- name: Fetch module tags
id: tags
if: steps.filter.outputs.modules == 'true'
run: |
echo "modules=${{ steps.filter.outputs.modules }}" >> $GITHUB_OUTPUT
- name: Fetch subworkflows tags
id: tags
if: steps.filter.outputs.subworkflows == 'true'
run: |
echo "subworkflows=${{ steps.filter.outputs.subworkflows }}" >> $GITHUB_OUTPUT
- name: debug
Expand Down

0 comments on commit 99822f7

Please sign in to comment.