mirror of
https://github.com/callumio/nixfiles.git
synced 2025-12-17 11:39:19 +00:00
Bumps [DeterminateSystems/magic-nix-cache-action](https://github.com/determinatesystems/magic-nix-cache-action) from 7 to 8. - [Release notes](https://github.com/determinatesystems/magic-nix-cache-action/releases) - [Commits](https://github.com/determinatesystems/magic-nix-cache-action/compare/v7...v8) --- updated-dependencies: - dependency-name: DeterminateSystems/magic-nix-cache-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
26 lines
740 B
YAML
26 lines
740 B
YAML
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
ci:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: cachix/install-nix-action@V27
|
|
with:
|
|
nix_path: nixpkgs=channel:nixos-unstable
|
|
- name: Free Disk Space
|
|
uses: jlumbroso/free-disk-space@main
|
|
with:
|
|
tool-cache: true
|
|
- uses: DeterminateSystems/magic-nix-cache-action@v8
|
|
- uses: cachix/cachix-action@v15
|
|
with:
|
|
name: callumio-public
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
pushFilter: '(nerdfonts)'
|
|
extraPullNames: nix-community, om
|
|
- run: nix run github:juspay/omnix --accept-flake-config -- ci run "."
|