diff options
| author | Lee Lup Yuen <luppy@appkaki.com> | 2020-08-17 17:25:59 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-17 17:25:59 (GMT) |
| commit | e8ec8ff204c1e98f27a85ca7555480932dd8f331 (patch) | |
| tree | dbba777a558e56db517a023403ae940ba8108433 | |
| parent | c0acab856d40154dba3c920ba401136dd26c83de (diff) | |
Commit docs to GitHub Pages
| -rw-r--r-- | .github/workflows/simulate.yml | 24 |
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 |
