summaryrefslogtreecommitdiff
path: root/.github/workflows/simulate.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/simulate.yml')
-rw-r--r--.github/workflows/simulate.yml24
1 files changed, 22 insertions, 2 deletions
diff --git a/.github/workflows/simulate.yml b/.github/workflows/simulate.yml
index 473820f..06e3cf3 100644
--- a/.github/workflows/simulate.yml
+++ b/.github/workflows/simulate.yml
@@ -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