NixOSDots/.gitea/workflows/Build Framework.yaml
Workflow config file is invalid. Please check your config file: yaml: line 22: mapping values are not allowed in this context
Alexandre_1a 59df6c3edc
All checks were successful
Check config / build (push) Successful in 9m44s
Actualiser .gitea/workflows/Build Framework.yaml
2026-06-20 13:08:31 +02:00

22 lines
692 B
YAML

name: Build Flake
on:
workflow_dispatch:
schedule:
- cron: "0 0 1 * *" # At midnight on the first day of the month (Monday)
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install nix
uses: DeterminateSystems/nix-installer-action@main
- name: Checkout
uses: actions/checkout@v4
- name: Build bumped flake (only one host)
run: nix build .#nixosConfigurations.FW16.config.system.build.toplevel
- name: Notify Success
run: curl -H "Title: Successfully builded flake!" -d "Builded Framework flake" https://ntfy.alexdelcamp.fr/FlakeBuild