Commit docs to GitHub Pages
This commit is contained in:
parent
c0acab856d
commit
e8ec8ff204
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue