ci: build nix packages
All checks were successful
Build nix packages / build-matrix (default) (push) Successful in 47s
All checks were successful
Build nix packages / build-matrix (default) (push) Successful in 47s
This commit is contained in:
parent
3cbee013c0
commit
50096a50e7
1 changed files with 20 additions and 0 deletions
20
.gitea/workflows/build.yml
Normal file
20
.gitea/workflows/build.yml
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
name: Build nix packages
|
||||||
|
on: [push]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-matrix:
|
||||||
|
runs-on: nix
|
||||||
|
strategy:
|
||||||
|
matrix:
|
||||||
|
package: [ "default" ]
|
||||||
|
steps:
|
||||||
|
- uses: https://github.com/cachix/cachix-action@v14
|
||||||
|
with:
|
||||||
|
name: ysyx
|
||||||
|
authToken: '${{ secrets.CACHIX_SIGNING_KEY }}'
|
||||||
|
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Build am-kernels
|
||||||
|
run: |
|
||||||
|
nix build -L .#${{ matrix.package }}
|
Loading…
Reference in a new issue