Commit docs to GitHub Pages

This commit is contained in:
Lee Lup Yuen 2020-08-18 01:25:59 +08:00 committed by GitHub
parent c0acab856d
commit e8ec8ff204
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 22 additions and 2 deletions

View File

@ -128,8 +128,28 @@ jobs:
cp /tmp/lvgl-wasm/wasm/*.html /tmp/lvgl-wasm/wasm/*.js /tmp/lvgl-wasm/wasm/*.wasm /tmp/lvgl-wasm/wasm/*.txt docs
- name: Commit GitHub Pages
run: |
echo TODO
uses: EndBug/add-and-commit@v4.4.0
with:
# Arguments for the git add command
add: docs
# The name of the user that will be displayed as the author of the commit
# author_name: # optional
# The email of the user that will be displayed as the author of the commit
# author_email: # optional
# The directory where your repository is located. You should use actions/checkout first to set it up
# cwd: # optional, default is .
# Whether to use the force option on git add, in order to bypass eventual gitignores
# force: # optional, default is false
# Whether to use the signoff option on git commit
# signoff: # optional, default is false
# The message for the commit
# message: # optional, default is Commit from GitHub Actions
# Name of the branch to use, if different from the one that triggered the workflow
# ref: # optional
# Arguments for the git rm command
# remove: # optional, default is
# The name of the tag to add to the new commit
# tag: # optional, default is
- name: Upload Outputs
uses: actions/upload-artifact@v2