From 4fec0c6c4526fa14a6184f644645184142bbf5c8 Mon Sep 17 00:00:00 2001 From: Kristoffer Dalby Date: Fri, 27 May 2022 10:35:37 +0100 Subject: [PATCH] Better names for steps --- .github/workflows/build.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 058b17c6..a7032072 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,11 +28,13 @@ jobs: integration_test/ config-example.yaml - - uses: actions/cache@v3 + - name: Nix cache + uses: actions/cache@v3 if: steps.changed-files.outputs.any_changed == 'true' with: path: | /nix/store + /nix/var/nix/db key: ${{ runner.os }}-nix-${{ hashFiles('**/flake.lock') }} restore-keys: | ${{ runner.os }}-nix- @@ -46,7 +48,7 @@ jobs: echo "::set-output name=go-build::$(nix develop --command -- go env GOCACHE)" echo "::set-output name=go-mod::$(nix develop --command -- go env GOMODCACHE)" - - name: Go Cache + - name: Go cache uses: actions/cache@v3 if: steps.changed-files.outputs.any_changed == 'true' with: