nix-system/.forgejo/workflows/nix-inputs-update.yml
ant 6614b04305
All checks were successful
/ build-all (push) Successful in 1m11s
add author to update flake workflow
2025-10-04 12:12:42 +02:00

12 lines
491 B
YAML

name: "Update Flake Packages ❄️"
on:
workflow_dispatch:
jobs:
updateFlakePackages:
runs-on: native
steps:
- run: git clone -q -b $FORGEJO_REF_NAME https://forgejo:$GITHUB_TOKEN@git.antoinevaure.fr/$GITHUB_REPOSITORY .
- run: git checkout -b update-nix-inputs
- run: nix flake update
- run: git commit -a -m "Update flake inputs $(date +'%d/%m/%Y')" --author="Update flake worklow"
- run: git push --force --set-upstream origin update-nix-inputs