Building a nix package #4
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
name: Building nix packages | |
run-name: Building a nix package | |
on: | |
workflow_dispatch: | |
inputs: | |
package: | |
description: Package name | |
required: false | |
default: sonarr | |
type: string | |
jobs: | |
Testing: | |
runs-on: nixos/nix | |
steps: | |
- run: echo "Running for package ${inputs.package}" | |
- run: nix build .#${inputs.package} |