From 33b7531bf71eb92bda3ae39e16cecedf2d8fd6fb Mon Sep 17 00:00:00 2001 From: Matthew Richards Date: Wed, 6 Jan 2021 13:16:23 +0000 Subject: [PATCH] #163: Set log location for exampple config file - This will prevent tests related to testing log location from failing --- .github/workflows/ci-build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index 57696700..e1327cba 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -10,13 +10,13 @@ jobs: steps: - name: Checkout repo uses: actions/checkout@v2 - - name: Create config.json - run: cp config.json.example config.json - name: Create log file run: touch logs.log - name: Configure log file location run: echo "`jq -r --arg REPO_DIR "$GITHUB_WORKSPACE/logs.log" \ - '.log_location=$REPO_DIR' config.json`" > config.json + '.log_location=$REPO_DIR' config.json.example`" > config.json.example + - name: Create config.json + run: cp config.json.example config.json - name: Setup Python uses: actions/setup-python@v1 with: