Fix backlight issue #17
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: 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 }} | |