-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
configured to push html files to development
- Loading branch information
1 parent
12f24e1
commit 71699f7
Showing
1 changed file
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,6 +34,18 @@ jobs: | |
cd Docs/build/html | ||
git status | ||
- name: Add modified files to Git | ||
run: | | ||
git config user.name "GitHub Actions" | ||
git config user.email "[email protected]" | ||
git add Docs/build/html | ||
- name: Commit changes | ||
run: git commit -m "Auto-update documentation" | ||
|
||
- name: Push changes | ||
run: git push origin development | ||
|
||
deploy: | ||
needs: build | ||
runs-on: ubuntu-latest | ||
|