download esptool #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build demo | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
build_and_test: | |
runs-on: self-hosted | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: npm install, build, and test | |
run: | | |
rm -rf InkWatchy-demo 1>/dev/null 2>/dev/null | |
git clone https://github.com/Szybet/InkWatchy.git InkWatchy-demo | |
cd InkWatchy-demo | |
./resources/tools/other/demoMaker.sh | |
- name: Upload demo files | |
uses: actions/upload-artifact@v4 | |
with: | |
name: demo | |
path: | | |
InkWatchy-demo/resources/tools/other/out/demo.bin | |
InkWatchy-demo/resources/tools/other/out/demo-source.zip |