Replace / by _ to name log files

This commit is contained in:
Gustavo Trott 2023-09-21 17:30:40 -03:00
parent a22ca06f37
commit ab479722e3

View File

@ -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()