mirror of
https://github.com/callumio/nixfiles.git
synced 2025-12-17 03:29:20 +00:00
Some checks failed
/ ci (push) Has been cancelled
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
27 lines
769 B
YAML
27 lines
769 B
YAML
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
ci:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
- uses: cachix/install-nix-action@v31
|
|
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@v13
|
|
- uses: cachix/cachix-action@v16
|
|
with:
|
|
name: callumio-public
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
pushFilter: '(nerdfonts)'
|
|
extraPullNames: nix-community, om
|
|
- run: nix build github:srid/devour-flake -L --no-link --print-out-paths --override-input flake .
|
|
|