Skip to content

Commit

Permalink
try this
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemann committed Aug 27, 2024
1 parent 567e724 commit 194dd8a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
generate-tests:
runs-on: ubuntu-latest
outputs:
all_tests: ${{ env.all_tests }}
all_tests: ${{ steps.get_all_tests.outputs.all_tests }}
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -34,9 +34,9 @@ jobs:
# Run the script and capture its output
output=$(./scripts/test.sh)
# Output the result in a way that GitHub Actions can read
echo "all_tests=$output" >> $GITHUB_ENV
echo "::set-output name=all_tests::$output"
- name: Print the captured output
run: echo "${{ env.all_tests }}"
run: echo "${{ steps.get_all_tests.outputs.all_tests }}"
debug-generate-tests:
name: ${{matrix.tests}}
needs: generate-tests
Expand Down

0 comments on commit 194dd8a

Please sign in to comment.