updated keymap #14
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
on: [push, pull_request, workflow_dispatch] | |
name: Build | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: zmkfirmware/zmk-build-arm:stable | |
name: Build | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Cache west modules | |
uses: actions/cache@v2 | |
env: | |
cache-name: cache-zephyr-modules | |
with: | |
path: | | |
modules/ | |
tools/ | |
zephyr/ | |
bootloader/ | |
zmk/ | |
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('manifest-dir/west.yml') }} | |
restore-keys: | | |
${{ runner.os }}-build-${{ env.cache-name }}- | |
${{ runner.os }}-build- | |
${{ runner.os }}- | |
- name: West Init | |
run: west init -l config | |
- name: West Update | |
run: west update | |
- name: West Zephyr export | |
run: west zephyr-export | |
- name: West Build (TIPPER_TF) | |
run: west build -s zmk/app -b tipper_tf -- -DZMK_CONFIG="${GITHUB_WORKSPACE}" | |
- name: TIPPER_TF Kconfig file | |
run: cat build/zephyr/.config | grep -v "^#" | grep -v "^$" | |
- name: Rename zmk.uf2 | |
run: cp build/zephyr/zmk.uf2 tipper_tf.uf2 | |
- name: Archive (TIPPER_TF) | |
uses: actions/upload-artifact@v2 | |
with: | |
name: firmware | |
path: tipper_tf.uf2 |