Skip to content

Commit

Permalink
Fix deploy checking status for success instead of conclusion for success
Browse files Browse the repository at this point in the history
  • Loading branch information
ChiriVulpes committed Aug 12, 2024
1 parent 8d1a571 commit 5278b64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
page: 1
});
if (runs[0]?.status !== 'success') {
if (runs[0]?.conclusion !== 'success') {
throw new Error('Latest build failed, cannot deploy');
}
Expand Down

0 comments on commit 5278b64

Please sign in to comment.