address PR comments

This commit is contained in:
Felipe Madero
2023-04-18 21:06:02 -03:00
parent ce2fc59b6e
commit a2628b433b
+3 -3
View File
@@ -57,10 +57,10 @@ jobs:
shell: bash
run: scripts/tests.e2e.sh
- name: Set ubuntu tmpdir into actions env
if: matrix.os == 'ubuntu-20.04'
if: startsWith(matrix.os, 'ubuntu')
run: echo "ANR_TMPDIR=/tmp/" >> $GITHUB_ENV
- name: Set macos tmpdir into actions env
if: matrix.os == 'macos-12'
if: startsWith(matrix.os, 'macos')
run: echo "ANR_TMPDIR=$TMPDIR" >> $GITHUB_ENV
- name: "Upload Artifact"
if: always()
@@ -68,7 +68,7 @@ jobs:
with:
name: anr-logs-${{ matrix.os }}
path: |
/${{ env.ANR_TMPDIR }}/network-runner-root-data*/
${{ env.ANR_TMPDIR }}/network-runner-root-data*/
retention-days: 5
release:
needs: [lint_test, unit_test, e2e_test]