Skip to content

A finishing touch for the firmware #3

A finishing touch for the firmware

A finishing touch for the firmware #3

Workflow file for this run

name: ATtiny85APU assembly
on: [push]
jobs:
build_rom:
runs-on: ubuntu-latest
name: Assemble the firmware
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache avra
uses: ./.github/actions/cache_avra
- name: Set path
run: |
echo "${{ github.workspace }}/opt/avra/bin" >> $GITHUB_PATH
- name: Build the firmware
run: make
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: main.hex
path: bin/avr/main.hex