Add index and lvgl to docs

This commit is contained in:
Lee Lup Yuen 2020-08-18 01:35:00 +08:00 committed by GitHub
parent e0e33ffb22
commit 797b8087bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -125,7 +125,17 @@ jobs:
if [ ! -d docs ]; then if [ ! -d docs ]; then
mkdir docs mkdir docs
fi 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 - name: Commit GitHub Pages
uses: EndBug/add-and-commit@v4.4.0 uses: EndBug/add-and-commit@v4.4.0