From 99570c66cbc542d1d7937192d97fa04442312280 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..6670d77 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.GITHUB_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 }}