feat: initial test of flake update
Signed-off-by: silver <silver@skynet.ie>
This commit is contained in:
parent
ed0be4507a
commit
43b2ab95c7
1 changed files with 15 additions and 0 deletions
15
.forgejo/workflows/update_input.yaml
Normal file
15
.forgejo/workflows/update_input.yaml
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
input_to_update:
|
||||||
|
description: 'Flake input to update'
|
||||||
|
required: true
|
||||||
|
type: string
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
update:
|
||||||
|
runs-on: nix
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- run: nix flake update "${{ inputs.input_to_update }}"
|
||||||
|
shell: bash
|
Loading…
Reference in a new issue