diff options
| author | Lee Lup Yuen <luppy@appkaki.com> | 2020-08-17 11:13:06 (GMT) |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-17 11:13:06 (GMT) |
| commit | a72751ba988336b78e279665d614435158b7b9f1 (patch) | |
| tree | c469755a1df1e7dc145840f8979658ff6f3c4ec2 /.github/workflows/simulate.yml | |
| parent | cc1ec5061d6dadddccb209f9767b4a5c12deefed (diff) | |
Copy files to simulator
Diffstat (limited to '.github/workflows/simulate.yml')
| -rw-r--r-- | .github/workflows/simulate.yml | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/.github/workflows/simulate.yml b/.github/workflows/simulate.yml index 100845a..d172e97 100644 --- a/.github/workflows/simulate.yml +++ b/.github/workflows/simulate.yml @@ -103,9 +103,9 @@ jobs: cd /tmp git clone https://github.com/AppKaki/lvgl-wasm - - name: Copy Clock.cpp + - name: Copy Watch Face Clock.cpp to LVGL for WebAssembly run: | - echo TODO + cp src/DisplayApp/Screens/Clock.cpp /tmp/lvgl-wasm/clock - name: Build LVGL for WebAssembly run: | @@ -117,17 +117,20 @@ jobs: cd /tmp/lvgl-wasm wasm/lvgl.sh - - name: Copy to GitHub Pages + - name: Show files + run: set ; pwd ; ls -l /tmp/lvgl-wasm + + - name: Copy WebAssembly to GitHub Pages run: | - echo TODO + 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 - name: Commit GitHub Pages run: | echo TODO - - name: Show files - run: set ; pwd ; ls -l - - name: Upload Outputs uses: actions/upload-artifact@v2 with: |
