We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7924f60 + dd79d24 commit 27952feCopy full SHA for 27952fe
.github/workflows/release.yml
@@ -56,12 +56,13 @@ jobs:
56
});
57
console.log(`Deleted existing tag: ${tag}`);
58
} catch (e) {
59
- if (e.status !== 404) {
60
- // Re-throw the error if it's not a "Not Found" error
+ if (e.status !== 404 && e.status !== 422) {
+ // Re-throw the error if it's not a "Not Found" or "Unprocessable" error
61
throw e;
62
}
63
console.log(`Tag ${tag} does not exist or already deleted.`);
64
65
+
66
67
# Step 4: Download the build artifact from the UPSTREAM repository after a PUSH event.
68
- name: Download artifact from build workflow
0 commit comments