Skip to content

Commit

Permalink
Fix Syntax Issue in Releaser Workflow
Browse files Browse the repository at this point in the history
Signed-off-by: Shivam Kumar <kumar.shivam.jarvis@gmail.com>
  • Loading branch information
ShivamKumar2002 committed Apr 29, 2024
1 parent d9b6b35 commit a31462d
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,11 @@ jobs:
submodules: recursive

- name: Check lint and test workflow status
if: ${{ github.event_name != 'workflow_dispatch' && github.event.workflow_run.conclusion != 'success' }}
id: check-status
run: |
if [ "${{ github.event_name != 'workflow_dispatch' && github.event.workflow_run.conclusion }}" != "success" ]; then
echo "Lint and test workflow did not complete successfully."
exit 1
fi
echo "Lint and test workflow did not complete successfully."
exit 1
- name: Configure Git
run: |
Expand Down

0 comments on commit a31462d

Please sign in to comment.