feat: initial test of flake update

Signed-off-by: silver <silver@skynet.ie>
This commit is contained in:
silver 2024-08-06 23:32:41 +00:00
parent ed0be4507a
commit 43b2ab95c7

View 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