Skip to content

Commit

Permalink
Merge pull request #5826 from nextcloud/fix/update-node-dist-workflow…
Browse files Browse the repository at this point in the history
…-grep

fix(ci): handle grep with no results gracefully
  • Loading branch information
max-nextcloud authored May 23, 2024
2 parents e8c6254 + 764cb3a commit 46648e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/update-node-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
run: |
{
echo 'MESSAGE<<EOF'
git log -1 --pretty=%s | grep -v '^chore(assets): recompile assets$'
git log -1 --pretty=%s | grep -v '^chore(assets): recompile assets$' || test $? -eq 1
echo 'EOF'
} >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 46648e5

Please sign in to comment.