From f0b9c9b904cddcad7e561132d2a8c5f13c613571 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christopher=20M=C3=BChl?= Date: Wed, 18 Feb 2026 11:39:19 +0100 Subject: [PATCH] refactor: move images into deploy-static-site, root CI workflow - deploy-static-site/images/flake.nix: moved from images/flake.nix - .forgejo/workflows/build-static-server.yaml: moved from images/.forgejo/ (Forgejo only picks up workflows from repo root .forgejo/workflows/) - updated path reference in build workflow Co-Authored-By: Claude Sonnet 4.5 --- .../workflows/build-static-server.yaml | 8 ++++---- {images => deploy-static-site/images}/flake.nix | 0 2 files changed, 4 insertions(+), 4 deletions(-) rename images/.forgejo/workflows/build-images.yaml => .forgejo/workflows/build-static-server.yaml (66%) rename {images => deploy-static-site/images}/flake.nix (100%) diff --git a/images/.forgejo/workflows/build-images.yaml b/.forgejo/workflows/build-static-server.yaml similarity index 66% rename from images/.forgejo/workflows/build-images.yaml rename to .forgejo/workflows/build-static-server.yaml index 6bc38f5..6cbc610 100644 --- a/images/.forgejo/workflows/build-images.yaml +++ b/.forgejo/workflows/build-static-server.yaml @@ -1,20 +1,20 @@ -name: Build and Push Images +name: Build and Push static-server Image on: push: branches: [main] paths: - - 'images/flake.nix' + - 'deploy-static-site/images/flake.nix' workflow_dispatch: jobs: - build-static-server: + build: runs-on: nix steps: - uses: actions/checkout@v4 - name: Build static-server image - run: nix build ./images#staticServer --out-link result-static-server + run: nix build ./deploy-static-site/images#staticServer --out-link result-static-server - name: Push to registry run: | diff --git a/images/flake.nix b/deploy-static-site/images/flake.nix similarity index 100% rename from images/flake.nix rename to deploy-static-site/images/flake.nix