Skip to content

Commit

Permalink
changed the condition that triggers the get_repository_dependencies job
Browse files Browse the repository at this point in the history
  • Loading branch information
alkaline-0 committed Apr 25, 2024
1 parent 1471ba9 commit 4c2ebbe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/create-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ jobs:
echo "STATUS='failure'" >> $GITHUB_ENV
fi
echo $STATUS
outputs:
status: ${{ env.STATUS }}
Expand All @@ -65,7 +66,7 @@ jobs:
run:
shell: bash

if: needs.create_submodule.outputs.status === 'success'
if: needs.create_submodule.outputs.status == 'success'
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down

0 comments on commit 4c2ebbe

Please sign in to comment.