We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f862a20 commit 410cf7aCopy full SHA for 410cf7a
.github/workflows/build_binaries.yaml
@@ -12,6 +12,13 @@ jobs:
12
with:
13
qmk_repo: qmk/qmk_firmware
14
qmk_ref: master
15
+ preparation_command: |
16
+ # Update avr-gcc toolchain to support -mrelax for smaller binaries.
17
+ set -e
18
+ apt update && apt -y install curl
19
+ mkdir -p ~/sdk/qmk
20
+ curl -Lf https://github.com/qmk/qmk_toolchains/releases/download/v14.2.0-3/qmk_toolchains-gcc14.2.0-host_linuxX64.tar.xz | tar -Jxf - -C ~/sdk/qmk --strip-components=1
21
+ printf "%s/sdk/qmk/bin\n" "$HOME" >>"$GITHUB_PATH"
22
23
publish:
24
name: 'QMK Userspace Publish'
0 commit comments