Skip to content

Commit 4deaeb6

Browse files
committed
fix(gh-actions): 🐛 Fix infra variable
1 parent f3e58cb commit 4deaeb6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/deploy-chatbot.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
with:
3939
environment: ${{ needs.parse-command.outputs.environment }}
4040
project: ${{ needs.parse-command.outputs.project }}
41-
infra: ${{ needs.parse-command.outputs.infra }}
41+
infra: ${{ needs.parse-command.outputs.artifact }}
4242

4343
trigger-deployment:
4444
needs: notify-user
@@ -50,9 +50,9 @@ jobs:
5050

5151
deploy-infra:
5252
needs: notify-user
53-
if: needs.parse-command.outputs.infra != ''
53+
if: needs.parse-command.outputs.artifact != ''
5454
uses: zerodaycode/app-summoners-sync/.github/workflows/deploy-infra.yml@develop
5555
with:
56-
artifact: ${{ needs.parse-command.outputs.infra }}
56+
artifact: ${{ needs.parse-command.outputs.artifact }}
5757
environment: ${{ needs.parse-command.outputs.environment }}
5858
secrets: inherit

0 commit comments

Comments
 (0)