Skip to content
This repository has been archived by the owner on Jan 6, 2022. It is now read-only.

Commit

Permalink
ci: don't fail when files weren't modified
Browse files Browse the repository at this point in the history
  • Loading branch information
alexthemaster committed Aug 1, 2020
1 parent 61f7e94 commit 601758c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ jobs:
rsync ./package* ./build
cd build
git add .
git commit -m "build: ${{ github.sha }}"
git commit -m "build: ${{ github.sha }}" || true
- name: Push files to GitHub
run: |
cd build
git push origin build
git push origin build || true
4 changes: 2 additions & 2 deletions .github/workflows/Docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ jobs:
rsync -r ./docs/. ./gh-pages
cd gh-pages
git add .
git commit -m "docs: ${{ github.sha }}"
git commit -m "docs: ${{ github.sha }}" || true
- name: Push files to GitHub
run: |
cd gh-pages
git push origin gh-pages
git push origin gh-pages || true

0 comments on commit 601758c

Please sign in to comment.