Skip to content

Commit

Permalink
try with defined output
Browse files Browse the repository at this point in the history
  • Loading branch information
Tofel committed Jan 10, 2024
1 parent 77bf39d commit b5231d3
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/live-testnet-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ jobs:
id-token: write
contents: read
name: Build Tests Binary
outputs:
test_value_2: ${{ steps.network_config.outputs.test_value_2 }}
runs-on: ubuntu-latest
steps:
- name: Collect Metrics
Expand Down Expand Up @@ -183,6 +185,7 @@ jobs:
echo "base64_network_config=$BASE64_NETWORK_CONFIG" >> $GITHUB_OUTPUT
echo "test_value=123" >> $GITHUB_OUTPUT
echo "test_value_2=456" >> $GITHUB_OUTPUT
# End Build Test Dependencies

Expand Down Expand Up @@ -318,10 +321,15 @@ jobs:
PYROSCOPE_SERVER: ${{ secrets.QA_PYROSCOPE_INSTANCE }}
PYROSCOPE_ENVIRONMENT: ci-smoke-${{ matrix.product }}-sepolia
PYROSCOPE_KEY: ${{ secrets.QA_PYROSCOPE_KEY }}
TEST_VALUE: ${{ needs.build-tests.outputs.test_value }}
TEST_VALUE: ${{ needs.build-tests.outputs.test_value }}
TEST_VALUE_2: ${{ needs.build-tests.outputs.test_value_2 }}
run: |
echo "TEST_VALUE=$TEST_VALUE"
echo "TEST_VALUE=${{ needs.build-tests.outputs.test_value }}"
echo "TEST_VALUE_2=$TEST_VALUE_2"
echo "TEST_VALUE_2=${{ needs.build-tests.outputs.test_value_2 }}"
if [ -n "$PYROSCOPE_SERVER" ]; then
pyroscope_enabled=true
else
Expand Down

0 comments on commit b5231d3

Please sign in to comment.