parent
17d599df64
commit
4f7ddfa607
1 changed files with 17 additions and 4 deletions
21
.github/workflows/build.yml
vendored
21
.github/workflows/build.yml
vendored
|
@ -6,15 +6,28 @@ jobs:
|
||||||
container:
|
container:
|
||||||
image: zmkfirmware/zmk-build-arm:stable
|
image: zmkfirmware/zmk-build-arm:stable
|
||||||
steps:
|
steps:
|
||||||
|
- name: Install Dependencies
|
||||||
|
run: |
|
||||||
|
apt-get update
|
||||||
|
apt-get install tree -y
|
||||||
|
|
||||||
|
- name: Use Node.js
|
||||||
|
uses: actions/setup-node@v4
|
||||||
|
with:
|
||||||
|
node-version: '20.x'
|
||||||
|
|
||||||
- name: Hack container for local development
|
- name: Hack container for local development
|
||||||
if: ${{ true }}
|
if: ${{ true }}
|
||||||
run: printf "/home/runner/externals/node20/bin\n" >> $GITHUB_PATH
|
run: printf "/home/runner/externals/node20/bin\n" >> $GITHUB_PATH
|
||||||
|
|
||||||
- name: Git checkout Config
|
- name: Git checkout Config
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- run: git clone https://github.com/zmkfirmware/zmk.git
|
|
||||||
- run: apt-get update
|
- name: Clone ZMK Repo
|
||||||
- run: apt-get install tree -y
|
run: git clone https://github.com/zmkfirmware/zmk.git
|
||||||
- run: tree /
|
|
||||||
|
- name: Debug Output
|
||||||
|
run: tree /
|
||||||
- name: Initialize ZMK
|
- name: Initialize ZMK
|
||||||
working-directory: ./zmk
|
working-directory: ./zmk
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Add table
Reference in a new issue