2023-10-28 16:16:17 +00:00
|
|
|
name: Nix Develop Action
|
2023-10-28 16:01:36 +00:00
|
|
|
description: Nix shell environments brought to GitHub Actions
|
|
|
|
author: nick novitski
|
2023-10-18 23:53:26 +00:00
|
|
|
inputs:
|
|
|
|
arguments:
|
|
|
|
description: Additional arguments to pass to the `nix develop` command
|
|
|
|
required: false
|
|
|
|
runs:
|
|
|
|
using: "composite"
|
|
|
|
steps:
|
|
|
|
- shell: bash
|
2023-10-19 17:13:44 +00:00
|
|
|
run: ${{ github.action_path }}/nix-develop-gha.sh ${{ inputs.arguments }}
|