Skip to content

test add tag CI

test add tag CI #18

Workflow file for this run

name: Build
on:
push:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout pixie-firmware
uses: actions/checkout@v3
with:
repository: yuetloo/pixie-firmware
path: pixie-firmware
ref: v0.0.1
- name: Verify user
run: echo $UID
- name: Build pixie-firmware using Docker
run: |
cd pixie-firmware
docker run --rm -v $PWD:/project -w /project -u $UID -e HOME=/tmp espressif/idf idf.py build
- name: Verify assets
run: |
ls -l ${{ github.workspace }}/pixie-firmware/build/pixie.bin
ls -l ${{ github.workspace }}/pixie-firmware/build/bootloader/bootloader.bin
ls -l ${{ github.workspace }}/pixie-firmware/build/partition_table/partition-table.bin