mirror of
https://github.com/danth/stylix
synced 2024-11-26 14:10:22 +00:00
27 lines
548 B
YAML
27 lines
548 B
YAML
name: Build
|
|
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
palette-generator:
|
|
name: Palette generator
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Install Nix
|
|
uses: cachix/install-nix-action@v16
|
|
|
|
- name: Set up Cachix
|
|
uses: cachix/cachix-action@v10
|
|
with:
|
|
name: danth
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Build palette generator
|
|
run: nix -L build .#palette-generator
|