diff --git a/.github/workflows/record-build-and-test-results-action.yml b/.github/workflows/record-build-and-test-results-action.yml index ec44f8d..a84d6d0 100644 --- a/.github/workflows/record-build-and-test-results-action.yml +++ b/.github/workflows/record-build-and-test-results-action.yml @@ -34,8 +34,6 @@ jobs: report_path: launchable-test-result/test-results.xml test_runner: pytest if: always() - env: - LAUNCHABLE_TOKEN: ${{ secrets.LAUNCHABLE_TOKEN_PYTEST }} - name: Record build and test results action with no build uses: launchableinc/record-build-and-test-results-action@support-flavor-and-test-session-name-options with: @@ -43,8 +41,13 @@ jobs: test_runner: pytest no_build: true if: always() - env: - LAUNCHABLE_TOKEN: ${{ secrets.LAUNCHABLE_TOKEN_PYTEST }} + - name: Record build and test results action with test_session_name option + uses: launchableinc/record-build-and-test-results-action@support-flavor-and-test-session-name-options + with: + report_path: launchable-test-result/test-results.xml + test_runner: pytest + test_session_name: ${{ github.run_id }} + if: always()