From 79e392b85dc0409667f7c93bfd4120151082d861 Mon Sep 17 00:00:00 2001 From: Brannon King Date: Mon, 30 Aug 2021 09:09:48 -0400 Subject: [PATCH] fixing tmp folder cleanup --- .github/workflows/full-sync-part-1.yml | 1 + .github/workflows/full-sync-part-2.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/full-sync-part-1.yml b/.github/workflows/full-sync-part-1.yml index e920b097..8a52fa30 100644 --- a/.github/workflows/full-sync-part-1.yml +++ b/.github/workflows/full-sync-part-1.yml @@ -31,4 +31,5 @@ jobs: - name: Run lbcd run: ./lbcd --datadir=${{env.TEMP_DATA_DIR}}/data --logdir=${{env.TEMP_DATA_DIR}}/logs --connect=127.0.0.1 --norpc - name: Remove datadir + if: always() run: rm -rf ${{env.TEMP_DATA_DIR}} diff --git a/.github/workflows/full-sync-part-2.yml b/.github/workflows/full-sync-part-2.yml index db81420f..844bb1f1 100644 --- a/.github/workflows/full-sync-part-2.yml +++ b/.github/workflows/full-sync-part-2.yml @@ -33,4 +33,5 @@ jobs: - name: Run lbcd run: ./lbcd --datadir=${{env.TEMP_DATA_DIR}}/data --logdir=${{env.TEMP_DATA_DIR}}/logs --connect=127.0.0.1 --norpc - name: Remove datadir + if: always() run: rm -rf ${{env.TEMP_DATA_DIR}}