From 197a23830d076b3482ceb1a0e458a14d0320ca1a Mon Sep 17 00:00:00 2001 From: Evgeny Rahman Date: Thu, 31 Oct 2024 18:11:34 -0400 Subject: [PATCH] Update ruby.yml --- .github/workflows/ruby.yml | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 2382a23..7f42468 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -46,14 +46,6 @@ jobs: - id: reporturl name: Set Report URL run: echo "url=https://github-actions-logs.s3.amazonaws.com/cucumber-test-report.html" >> "$GITHUB_OUTPUT" - outputtest: - runs-on: ubuntu-latest - needs: test - steps: - - env: - OUTPUT1: - ${{needs.test.outputs.reporturl}} - run: echo "$OUTPUT1" publish: runs-on: ubuntu-latest environment: @@ -61,7 +53,10 @@ jobs: url: https://github-actions-logs.s3.amazonaws.com/cucumber-test-report.html needs: test steps: - - run: echo "${{needs.test.outputs.reportur}}" + - env: + REPORTURL: + ${{needs.test.outputs.reporturl}} + - run: echo "$REPORTURL" - uses: actions/download-artifact@v4 with: name: report