nixos-config/.forgejo/workflows/nightly-update.yaml

30 lines
888 B
YAML

on:
schedule:
- cron: 0 */6 * * *
jobs:
update:
runs-on: native
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Update flake
run: |
cd ${{ env.FORGEJO_WORKSPACE }}
nix flake update
- name: Commit new Flake.lock
run: |
git config --local user.email "christoph.hollizeck@hey.com"
git config --local user.name "forgjo-actions[bot]"
git commit -a -m "chore: update flake"
- name: Push changes
run: git push
- name: Build Loptland
run: |
cd ${{ env.FORGEJO_WORKSPACE }}
nix build .#nixosConfigurations.loptland.config.system.build.toplevel
- name: Build Yggdrasil
run: |
cd ${{ env.FORGEJO_WORKSPACE }}
nix build .#nixosConfigurations.yggdrasil.config.system.build.toplevel