From 10ba76699dc6f515650451d037435bdc411daa92 Mon Sep 17 00:00:00 2001 From: Mark Wardle Date: Thu, 19 Oct 2023 17:58:18 +0100 Subject: [PATCH] Rename cache directory in action --- .github/workflows/test-live-uk.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-live-uk.yml b/.github/workflows/test-live-uk.yml index c0cd35d0..9b537a75 100644 --- a/.github/workflows/test-live-uk.yml +++ b/.github/workflows/test-live-uk.yml @@ -37,7 +37,7 @@ jobs: run: clojure -M:dev:check - name: Create TRUD cache directory - run: mkdir download + run: mkdir trud - name: Write out TRUD API key from secrets run: echo ${{ secrets.TRUD_API_KEY }} >> api-key.txt @@ -51,10 +51,10 @@ jobs: - name: Install latest distributions for the UK if: steps.cache-db.outputs.cache-hit != 'true' - run: clojure -M:run --db snomed.db install uk.nhs/sct-clinical --api-key api-key.txt --cache-dir download + run: clojure -M:run --db snomed.db install uk.nhs/sct-clinical --api-key api-key.txt --cache-dir trud - name: Remove downloaded files - run: rm -rf download + run: rm -rf trud - name: Index database if: steps.cache-db.outputs.cache-hit != 'true'