Skip to content

Merge pull request #24 from tsandrini/tsandrini-patch-1 #9

Merge pull request #24 from tsandrini/tsandrini-patch-1

Merge pull request #24 from tsandrini/tsandrini-patch-1 #9

Workflow file for this run

# --- Push packages & devshells to the cachix binary cache service
name: cachix push
on:
workflow_dispatch: # allows manual triggering from the Actions UI
push:
branches:
- main
jobs:
cachix-push:
runs-on: "ubuntu-latest"
steps:
- name: "Checking out repository..."
uses: actions/checkout@v4
- name: "Installing and configuring the nix package manager..."
uses: DeterminateSystems/nix-installer-action@main
with:
extra-conf: |
accept-flake-config = true
- name: "Setting up magic-nix-cache..."
uses: DeterminateSystems/magic-nix-cache-action@main
- name: "Settings up cachix binary cache..."
uses: cachix/cachix-action@v15
with:
name: tsandrini
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
# NOTE Install any necessary packages here
- name: "Setting up packages..."
run: |
nix profile install nixpkgs#nix-fast-build # parallel nix builder
- name: "Building project packages..."
run: nix-fast-build --skip-cached --no-nom --flake ".#packages"
- name: "Building project devShells..."
run: nix-fast-build --skip-cached --no-nom --flake ".#devShells"