Skip to content

Commit

Permalink
Store output in env var before echoing it
Browse files Browse the repository at this point in the history
  • Loading branch information
RandomTannenbaum committed Nov 5, 2024
1 parent 3c2472e commit 34d83c2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/frontend-test-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Check value of output
run: echo ${{ steps.get-e2e-files.outputs.file_list }}
env:
TEST: ${{ needs.get-e2e-files.outputs.file_list }}
run: echo "$TEST"

- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit 34d83c2

Please sign in to comment.