diff --git a/.github/workflows/ci_integration_tests_macos.yaml b/.github/workflows/ci_integration_tests_macos.yaml index 9e348e4180..82a1eb3544 100644 --- a/.github/workflows/ci_integration_tests_macos.yaml +++ b/.github/workflows/ci_integration_tests_macos.yaml @@ -54,7 +54,7 @@ jobs: shell: bash - uses: actions/upload-artifact@v2 with: - name: Integration Logs (${{ runner.os }}, ${{ matrix.os }}) - path: ${{ github.workspace }}/integration.log + name: macos_integration.log + path: ${{ env.CKB_INTEGRATION_TEST_TMP }}/integration.log env: RUNNER_LABEL: ${{ needs.prologue.outputs.runner_label }} diff --git a/.github/workflows/ci_integration_tests_ubuntu.yaml b/.github/workflows/ci_integration_tests_ubuntu.yaml index 86d959ed34..e08967d75c 100644 --- a/.github/workflows/ci_integration_tests_ubuntu.yaml +++ b/.github/workflows/ci_integration_tests_ubuntu.yaml @@ -54,7 +54,7 @@ jobs: shell: bash - uses: actions/upload-artifact@v2 with: - name: Integration Logs (${{ runner.os }}, ${{ matrix.os }}) - path: ${{ github.workspace }}/integration.log + name: ubuntu_integration.log + path: ${{ env.CKB_INTEGRATION_TEST_TMP }}/integration.log env: RUNNER_LABEL: ${{ needs.prologue.outputs.linux_runner_label }} diff --git a/.github/workflows/ci_integration_tests_windows.yaml b/.github/workflows/ci_integration_tests_windows.yaml index 821512c1cc..a56ca3be6b 100644 --- a/.github/workflows/ci_integration_tests_windows.yaml +++ b/.github/workflows/ci_integration_tests_windows.yaml @@ -63,7 +63,7 @@ jobs: shell: bash - uses: actions/upload-artifact@v2 with: - name: Integration Logs (${{ runner.os }}, ${{ matrix.os }}) - path: ${{ github.workspace }}/integration.log + name: windows_integration.log + path: ${{ env.CKB_INTEGRATION_TEST_TMP }}/integration.log env: RUNNER_LABEL: ${{ needs.prologue.outputs.windows_runner_label }}