2024-02-27 20:45:41 +03:00
|
|
|
name: Cachix
|
2024-08-07 02:58:04 +03:00
|
|
|
|
2024-02-27 20:45:41 +03:00
|
|
|
on:
|
|
|
|
push:
|
2024-08-07 02:58:04 +03:00
|
|
|
branches: [main]
|
2024-02-27 20:45:41 +03:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
publish:
|
|
|
|
name: Publish Flake
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, macos-latest]
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
2024-03-03 10:36:49 +03:00
|
|
|
- uses: actions/checkout@v4
|
2024-02-27 20:45:41 +03:00
|
|
|
|
2024-03-03 10:36:49 +03:00
|
|
|
- name: Install Nix
|
|
|
|
uses: cachix/install-nix-action@v25
|
2024-02-27 20:45:41 +03:00
|
|
|
|
2024-03-03 10:36:49 +03:00
|
|
|
- name: Authenticate with Cachix
|
|
|
|
uses: cachix/cachix-action@v14
|
|
|
|
with:
|
|
|
|
name: yazi
|
|
|
|
authToken: "${{ secrets.CACHIX_AUTH_TOKEN }}"
|
2024-02-27 20:45:41 +03:00
|
|
|
|
2024-03-03 10:36:49 +03:00
|
|
|
- name: Build Flake
|
|
|
|
run: nix build -L
|