2020-07-21 01:06:43 +09:00
|
|
|
name: build
|
|
|
|
on:
|
2021-07-25 19:07:06 +09:00
|
|
|
push: { branches: [main] }
|
2020-07-21 01:06:43 +09:00
|
|
|
jobs:
|
|
|
|
main:
|
2021-07-25 19:07:06 +09:00
|
|
|
runs-on: ubuntu-latest
|
2020-07-21 01:06:43 +09:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-07-17 13:15:05 +09:00
|
|
|
- run: sudo apt-get update
|
2020-08-08 23:25:52 +09:00
|
|
|
- run: sudo apt-get install -y qemu-user-static
|
2020-07-21 01:06:43 +09:00
|
|
|
- run: bin/build
|
2021-09-05 13:47:00 +09:00
|
|
|
- run: sudo bin/img-gen
|
2021-09-05 15:54:36 +09:00
|
|
|
- uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: megabit-armhf
|
|
|
|
path: megabit-armhf.*
|