summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorLee Lup Yuen <luppy@appkaki.com>2020-08-17 17:35:00 (GMT)
committerGitHub <noreply@github.com>2020-08-17 17:35:00 (GMT)
commit797b8087bcbef42c8e5ac59a9d937dcb344b0784 (patch)
tree1fd882bafcd03a15e6ba7f0800227bff21895a7c /.github/workflows
parente0e33ffb225694903eebb19b6f62b1eb2caa6d20 (diff)
Add index and lvgl to docs
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/simulate.yml12
1 files changed, 11 insertions, 1 deletions
diff --git a/.github/workflows/simulate.yml b/.github/workflows/simulate.yml
index 06e3cf3..acb58bd 100644
--- a/.github/workflows/simulate.yml
+++ b/.github/workflows/simulate.yml
@@ -125,7 +125,17 @@ jobs:
if [ ! -d docs ]; then
mkdir docs
fi
- cp /tmp/lvgl-wasm/wasm/*.html /tmp/lvgl-wasm/wasm/*.js /tmp/lvgl-wasm/wasm/*.wasm /tmp/lvgl-wasm/wasm/*.txt docs
+ export src=/tmp/lvgl-wasm
+ export docs=$src/docs
+ export wasm=$src/wasm
+ cp \
+ $docs/index.md \
+ $docs/lvgl.html \
+ $wasm/*.html \
+ $wasm/*.js \
+ $wasm/*.wasm \
+ $wasm/*.txt \
+ docs
- name: Commit GitHub Pages
uses: EndBug/add-and-commit@v4.4.0