Skip to content

Commit

Permalink
ci: fix the HTTP 404 error in the CICD pipeline (#61)
Browse files Browse the repository at this point in the history
Signed-off-by: Harikrishnan Balagopal <harikrishmenon@gmail.com>
  • Loading branch information
HarikrishnanBalagopal authored Jul 24, 2024
1 parent 66a74cf commit 72667aa
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 @@ -65,7 +65,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 72667aa

Please sign in to comment.