Skip to content

fix up switch page logic #80

fix up switch page logic

fix up switch page logic #80

Workflow file for this run

name: Build
on:
push:
jobs:
build:
runs-on: ubuntu-latest
permissions:
actions: write
contents: write
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Cache npm and makecode
uses: actions/cache@v3
with:
path: |
~/.npm
~/.pxt/mkc-cache
key: ${{ runner.os }}-${{ hashFiles('pxt.json') }}-${{ hashFiles('mkc*json') }}
restore-keys: |
${{ runner.os }}-
- name: npm install [email protected]
run: |
npm install -g [email protected]
- name: build hex file
run: |
makecode
- name: copy files
run: |
cp ./built/binary.hex ./assets/microcode.hex
- name: upload modified assets
uses: stefanzweifel/git-auto-commit-action@v4
with:
file_pattern: "assets/*"
branch: main