Skip to content

Commit

Permalink
updated syntax for how we call the output var
Browse files Browse the repository at this point in the history
  • Loading branch information
Duceswild99 committed Nov 23, 2022
1 parent ff93f6c commit 818b3bb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/update-test-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
setup:
runs-on: ubuntu-latest
outputs:
get-server-ip-list: ${{ steps['get-server-ip-list'].outputs['get-server-ip-list'] }}
get-server-ip-list: ${{ steps.get-server-ip-list.outputs.get-server-ip-list }}
steps:
- id: get-server-ip-list
name: Get Server IP List
Expand All @@ -31,7 +31,7 @@ jobs:
steps:
- name: print output ${{ steps['get-server-ip-list'].outputs['get-server-ip-list'] }}
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 @@ -40,7 +40,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 818b3bb

Please sign in to comment.