feat: adjust logs names (#2460)
* feat: adjust logs * feat: adjust logs names
This commit is contained in:
parent
dbba734672
commit
69a4ecdbde
8
.github/workflows/cypress-explorer-e2e.yml
vendored
8
.github/workflows/cypress-explorer-e2e.yml
vendored
@ -91,6 +91,14 @@ jobs:
|
||||
## Upload logs
|
||||
######
|
||||
|
||||
# Artifact path is not valid: /ganache-1/capsule-logscolletor.stderr-2022-12-22T10:20:30Z.log. Contains the following character: Colon :
|
||||
- name: Rename files to allow archive
|
||||
if: ${{ always() }}
|
||||
run: |
|
||||
while read -r file; do
|
||||
mv "${file}" "$(echo ${file} | sed 's|:|-|g')"
|
||||
done< <(find /home/runner/.vegacapsule/testnet/logs -type f)
|
||||
|
||||
- uses: actions/upload-artifact@v2
|
||||
if: ${{ always() }}
|
||||
with:
|
||||
|
8
.github/workflows/cypress-token-e2e.yml
vendored
8
.github/workflows/cypress-token-e2e.yml
vendored
@ -86,6 +86,14 @@ jobs:
|
||||
## Upload logs
|
||||
######
|
||||
|
||||
# Artifact path is not valid: /ganache-1/capsule-logscolletor.stderr-2022-12-22T10:20:30Z.log. Contains the following character: Colon :
|
||||
- name: Rename files to allow archive
|
||||
if: ${{ always() }}
|
||||
run: |
|
||||
while read -r file; do
|
||||
mv "${file}" "$(echo ${file} | sed 's|:|-|g')"
|
||||
done< <(find /home/runner/.vegacapsule/testnet/logs -type f)
|
||||
|
||||
- uses: actions/upload-artifact@v2
|
||||
if: ${{ always() }}
|
||||
with:
|
||||
|
Loading…
Reference in New Issue
Block a user