Delete .github/workflows/build.yml

This commit is contained in:
Oliver Davies 2024-10-05 23:05:31 +01:00 committed by GitHub
parent c8f2ad8302
commit 902c1db5ba
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,32 +0,0 @@
name: Build
on: [push, pull_request, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/checkout@v4
with:
repository: moergo-sc/zmk
ref: main
path: src
- uses: cachix/install-nix-action@v25
with:
nix_path: nixpkgs=channel:nixos-22.05
- uses: cachix/cachix-action@v14
with:
name: moergo-glove80-zmk-dev
skipPush: true
- name: Build Glove80 combined firmware
run: nix-build config -o combined
- name: Copy result out of nix store
run: cp combined/glove80.uf2 glove80.uf2
- name: Upload result
uses: actions/upload-artifact@v4
with:
name: glove80.uf2
path: glove80.uf2