mirror of
https://github.com/ryanccn/flake.git
synced 2026-01-27 04:06:28 +01:00
Bumps [cachix/install-nix-action](https://github.com/cachix/install-nix-action) from 31.4.0 to 31.4.1.
- [Release notes](https://github.com/cachix/install-nix-action/releases)
- [Changelog](https://github.com/cachix/install-nix-action/blob/master/RELEASE.md)
- [Commits](17fe5fb4a2...f0fe604f8a)
---
updated-dependencies:
- dependency-name: cachix/install-nix-action
dependency-version: 31.4.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
39 lines
910 B
YAML
39 lines
910 B
YAML
# SPDX-FileCopyrightText: 2025 Ryan Cao <hello@ryanccn.dev>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
name: Build
|
|
|
|
on:
|
|
push:
|
|
branches: ["main"]
|
|
pull_request:
|
|
branches: ["main"]
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build:
|
|
strategy:
|
|
matrix:
|
|
label:
|
|
- caladan
|
|
include:
|
|
- label: caladan
|
|
attr: darwinConfigurations.caladan.config.system.build.toplevel
|
|
runner: macos-14
|
|
|
|
runs-on: ${{ matrix.runner }}
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # ratchet:actions/checkout@v4
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Install Nix
|
|
uses: cachix/install-nix-action@f0fe604f8a612776892427721526b4c7cfb23aba # ratchet:cachix/install-nix-action@v31
|
|
|
|
- name: Build
|
|
run: nix build -L --show-trace .#${{ matrix.attr }}
|