Skip to content

Commit

Permalink
trying different ways to share outputs between jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
Duceswild99 committed Nov 23, 2022
1 parent 4fd9779 commit c4b3e78
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/update-test-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:
- name: print output
run: |
echo "${{ needs.setup.outputs.get-server-ip-list }}"
echo "${{ needs.setup.outputs['get-server-ip-list'] }}"
echo "middle"
dig +short app-servers.pathology.gg TXT | jq -cr 'split(",")'
Expand All @@ -43,7 +44,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
server: ${{ needs.setup.outputs.get-server-ip-list }}
server: ${{ needs.setup.outputs['get-server-ip-list'] }}
steps:
- name: Configure SSH
run: |
Expand Down

0 comments on commit c4b3e78

Please sign in to comment.