Skip to content

Commit

Permalink
chore: update
Browse files Browse the repository at this point in the history
  • Loading branch information
btlghrants committed Aug 28, 2024
1 parent c1bbb60 commit 8edd5e8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/semrel-rc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
registry-url: "https://registry.npmjs.org"
cache: npm

- name: Release needed?
- name: Is a release needed?
id: release-needed
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -48,8 +48,7 @@ jobs:
needed=false
needle="There are no relevant changes, so no new version is releaseds."
npm run sem-rel -- --dry-run | grep --quiet "$needle"
retval="$?"
retval=$(npm run sem-rel -- --dry-run | grep --quiet "$needle" ; echo "$?")
echo "retval: $retval"
if [ "$retval" = 0 ]
then needed=false ; else needed=true
Expand Down

0 comments on commit 8edd5e8

Please sign in to comment.