Skip to content

Commit

Permalink
Fix serverTaskId docs
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaacCalligeros95 committed Apr 12, 2023
1 parent 56644f0 commit 776edc9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DEVELOPERS_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ steps:
OCTOPUS_URL: ${{ secrets.SERVER }}
OCTOPUS_SPACE: 'Outer Space'
with:
server_task_id: {{ steps.some_previous_deployment_step.outputs.server_tasks[0].server_task_id }}
server_task_id: ${{ fromJson(steps.some_previous_deployment_step.outputs.server_tasks)[0].serverTaskId }}
```
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ steps:
OCTOPUS_URL: ${{ secrets.SERVER }}
OCTOPUS_SPACE: 'Outer Space'
with:
server_task_id: {{ steps.some_previous_deployment_step.outputs.server_tasks[0].server_task_id }}
server_task_id: ${{ fromJson(steps.some_previous_deployment_step.outputs.server_tasks)[0].serverTaskId }}
```
## ✍️ Environment Variables
Expand Down

0 comments on commit 776edc9

Please sign in to comment.