From 08486e25e6b97ea7056919d58f6c7867386719e7 Mon Sep 17 00:00:00 2001 From: Simon Gardling Date: Mon, 6 Apr 2026 14:38:21 -0400 Subject: [PATCH] gitea: also build laptop --- .gitea/workflows/deploy.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/deploy.yml b/.gitea/workflows/deploy.yml index a4147d8..5905d63 100644 --- a/.gitea/workflows/deploy.yml +++ b/.gitea/workflows/deploy.yml @@ -1,4 +1,4 @@ -name: Build and Deploy Desktop +name: Build and Deploy on: push: branches: [main] @@ -19,6 +19,10 @@ jobs: run: | nix build .#nixosConfigurations.yarn.config.system.build.toplevel -L + - name: Build NixOS configuration (mreow) + run: | + nix build .#nixosConfigurations.mreow.config.system.build.toplevel -L + - name: Deploy to desktop run: | eval $(ssh-agent -s) @@ -35,7 +39,7 @@ jobs: run: | curl -sf -X POST \ "https://ntfy.sigkill.computer/deployments" \ - -H "Title: [yarn] Build succeeded" \ + -H "Title: [dotfiles] Build succeeded" \ -H "Priority: default" \ -H "Tags: white_check_mark" \ -d "dotfiles built from commit ${GITHUB_SHA::8}" @@ -45,7 +49,7 @@ jobs: run: | curl -sf -X POST \ "https://ntfy.sigkill.computer/deployments" \ - -H "Title: [yarn] Build FAILED" \ + -H "Title: [dotfiles] Build FAILED" \ -H "Priority: urgent" \ -H "Tags: rotating_light" \ -d "dotfiles build failed at commit ${GITHUB_SHA::8}"