2022-03-02 06:12:50 +04:00
|
|
|
# Publish the Nix flake outputs to Cachix
|
|
|
|
name: Cachix
|
|
|
|
on:
|
2022-03-02 06:18:29 +04:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2022-03-02 06:12:50 +04:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
publish:
|
|
|
|
name: Publish Flake
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Checkout sources
|
2023-09-05 17:51:19 +04:00
|
|
|
uses: actions/checkout@v4
|
2022-03-02 06:12:50 +04:00
|
|
|
|
|
|
|
- name: Install nix
|
2024-03-12 09:38:19 +04:00
|
|
|
uses: cachix/install-nix-action@v26
|
2022-03-02 06:12:50 +04:00
|
|
|
|
|
|
|
- name: Authenticate with Cachix
|
2024-01-16 09:13:12 +04:00
|
|
|
uses: cachix/cachix-action@v14
|
2022-03-02 06:12:50 +04:00
|
|
|
with:
|
|
|
|
name: helix
|
|
|
|
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
|
|
|
|
|
|
|
|
- name: Build nix flake
|
2022-09-03 02:54:07 +04:00
|
|
|
run: nix build -L
|