nix-system/.forgejo/workflows/nix-inputs-update.yml
Antoine Vaure 5e0ca849aa
Some checks failed
/ build-all (push) Has been cancelled
add workflow to update flake inputs
2025-09-23 15:59:06 +02:00

18 lines
699 B
YAML

name: "Update Flake Packages ❄️"
on:
workflow_dispatch:
jobs:
updateFlakePackages:
runs-on: native
steps:
- run: git clone -q https://forgejo:$GITHUB_TOKEN@git.antoinevaure.fr/$GITHUB_REPOSITORY .
- run: pwd
- run: ls -la
- run: echo ${{join([env.FORGEJO_WORKSPACE, env.GITHUB_REPOSITORY ], '/')}}
- run: pwd
working-directory: ${{join([env.FORGEJO_WORKSPACE, env.GITHUB_REPOSITORY], '/')}}
- run: git checkout $GITHUB_REF
working-directory: ${{ env.GITHUB_REPOSITORY }}
- name: Update flake packages
working-directory: ${{ env.GITHUB_REPOSITORY }}
uses: https://github.com/selfuryon/nix-update-action@v1.1.0