Skip to content

Commit

Permalink
ci: fix the HTTP 404 error in the CICD pipeline
Browse files Browse the repository at this point in the history
Signed-off-by: Harikrishnan Balagopal <[email protected]>
  • Loading branch information
HarikrishnanBalagopal committed Jul 24, 2024
1 parent 3f96c8f commit 3aef4f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
tag_exists = true;
core.info(`the tag ${tag} already exists on ${resp.data.object.type} ${resp.data.object.sha}`);
} catch(err) {
if(err.status !== 404){
if(err.status !== 404 && err.status !== '404'){
throw err;
}
}
Expand Down

0 comments on commit 3aef4f1

Please sign in to comment.