From ab479722e37b3baa528fba7ae2abd719f69405aa Mon Sep 17 00:00:00 2001 From: Gustavo Trott Date: Thu, 21 Sep 2023 17:30:40 -0300 Subject: [PATCH] Replace / by _ to name log files --- .github/workflows/automated-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/automated-tests.yml b/.github/workflows/automated-tests.yml index 964eae041d..694b5a04da 100644 --- a/.github/workflows/automated-tests.yml +++ b/.github/workflows/automated-tests.yml @@ -329,12 +329,12 @@ jobs: - if: failure() uses: actions/upload-artifact@v3 with: - name: bbb-configs-${{ matrix.shard }} + name: bbb-configs-$(echo "${{ matrix.shard }}" | tr '/' '_') path: configs - if: failure() uses: actions/upload-artifact@v3 with: - name: bbb-logs-${{ matrix.shard }} + name: bbb-logs-$(echo "${{ matrix.shard }}" | tr '/' '_') path: ./bbb-logs.tar.gz upload-report: if: always()