Skip to content

Generalize org brand identity #20

Generalize org brand identity

Generalize org brand identity #20

Workflow file for this run

name: Compile with Docker CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: make compile executable
run: chmod +x ./compile-with-docker.sh
- name: clean
run: make clean
- name: compile with docker
run: ./compile-with-docker.sh
- uses: actions/upload-artifact@v4
with:
name: Packed Firmware
path: ./compiled-firmware/firmware.packed.bin
- uses: actions/upload-artifact@v4
with:
name: Raw Firmware
path: ./compiled-firmware/firmware.bin
- name: pr-comment-file-size
uses: fatton139/[email protected]
with:
# Path to file or directory for file sizes analysis.
path: ./compiled-firmware/firmware.packed.bin
# your GITHUB_TOKEN env var.
token: ${{ secrets.GITHUB_TOKEN }}