From 98797b25cf2addbcade0992b94e5df292edb1a94 Mon Sep 17 00:00:00 2001 From: xeals Date: Tue, 14 Nov 2023 22:04:35 +1100 Subject: [PATCH] ci: override github access token --- .gitea/workflows/build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index f043610..73096df 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -15,7 +15,10 @@ jobs: steps: - name: Checkout repository uses: https://gitea.com/actions/checkout@v3 - - uses: https://github.com/cachix/install-nix-action@v23 + - name: Install nix + uses: https://github.com/cachix/install-nix-action@v23 + with: + github_access_token: ${{ secrets.INPUT_GITHUB_ACCESS_TOKEN }} - name: Check ${{ matrix.check }} # Depends on nixos/nix#7759 to simply `nix flake check` run: nix run .#checks.$(nix eval --raw --impure --expr "builtins.currentSystem").${{ matrix.check }}