build(deps): bump cachix/install-nix-action from V27 to 30 #188
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Publish the Nix flake outputs to Cachix | |
name: Cachix | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
publish: | |
name: Publish Flake | |
runs-on: ubuntu-latest | |
environment: release | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: Install nix | |
uses: cachix/install-nix-action@v30 | |
- name: Authenticate with Cachix | |
uses: cachix/cachix-action@v15 | |
with: | |
name: gitu | |
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }} | |
- name: Build nix flake | |
run: nix build -L |