From b7f8234960671336361c3062d8014b5c513144fa Mon Sep 17 00:00:00 2001 From: Daniel Kempkens Date: Thu, 14 Sep 2023 23:21:34 +0200 Subject: [PATCH] fix(ci): Specify runner --- .forgejo/workflows/ci.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.forgejo/workflows/ci.yaml b/.forgejo/workflows/ci.yaml index 8b2252c..53e78eb 100644 --- a/.forgejo/workflows/ci.yaml +++ b/.forgejo/workflows/ci.yaml @@ -4,10 +4,19 @@ on: [push] jobs: check: + runs-on: ubuntu-latest-amd64 + uses: daniel/reusable-workflows/.github/workflows/nix-flake-check.yaml@main + with: + runner: ubuntu-latest-amd64 secrets: inherit build: + runs-on: ubuntu-latest-amd64 + needs: check + uses: daniel/reusable-workflows/.github/workflows/nix-flake-build.yaml@main + with: + runner: ubuntu-latest-amd64 secrets: inherit