forked from wez/wezterm
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (37 loc) · 1 KB
/
nix_continuous.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: nix_continuous
on:
schedule:
- cron: "10 3 * * *"
workflow_dispatch:
push:
branches:
- main
paths:
- '**/*.rs'
- '.github/workflows/nix_continuous.yml'
- 'nix/**'
jobs:
lints:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install nix
uses: DeterminateSystems/nix-installer-action@main
- name: Cache build artifacts
uses: DeterminateSystems/magic-nix-cache-action@main
- name: Check flake inputs
uses: DeterminateSystems/flake-checker-action@main
with:
flake-lock-path: ./nix/flake.lock
ignore-missing-flake-lock: false
- name: Setup Cachix
uses: cachix/cachix-action@v15
with:
name: wezterm
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- name: Build default package
run: |
nix build ./nix --json \
| jq -r '.[].outputs | to_entries[].value' \
| cachix push wezterm