Skip to content

Commit

Permalink
Merge pull request #14 from CMUSTRUDEL/dev
Browse files Browse the repository at this point in the history
ci: ignore gh-pages commit exit code in case there were no changes
  • Loading branch information
user2589 authored Jul 26, 2020
2 parents ebdae2d + 9d6f680 commit c5c005a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,5 @@ jobs:
git config user.name "github-actions"
git config user.email "[email protected]"
git add .
git commit -m "github pages"
git push
# git commit will fail if there are no changes, thus ignore exit code
git commit -m "github pages" -a && git push || true

0 comments on commit c5c005a

Please sign in to comment.