Skip to content

Commit

Permalink
fix: workaround for failing semantic-release
Browse files Browse the repository at this point in the history
Signed-off-by: Armin Schlegel <[email protected]>
  • Loading branch information
siredmar committed Feb 24, 2023
1 parent 94608cb commit 1577164
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,6 @@ jobs:
#!/bin/bash
set -e
npm install @semantic-release/exec @eclass/semantic-release-docker -D
npx -c semantic-release
# the ... || true is to prevent the script from failing caused by a bug in semantic-release regarding
# rate limit changes on github. See https://github.com/semantic-release/github/pull/487
npx -c semantic-release || true

0 comments on commit 1577164

Please sign in to comment.