21 lines
414 B
YAML
21 lines
414 B
YAML
|
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
|
||
|
run: |
|
||
|
nix build -L .#${{ matrix.package }}
|