Skip to content

Commit ce6777f

Browse files
committed
fix reference name for created cloud-pod
1 parent dea866f commit ce6777f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
"install-awslocal": "true",
109109
"configuration": "DEBUG=1",
110110
"use-pro": "true",
111-
"state-name": "${{ needs.cloud-pods-test.outputs.pod-name }}",
111+
"state-name": "${{ needs.cloud-pods-save-test.outputs.pod-name }}",
112112
"state-action": "load"
113113
}
114114
env:
@@ -123,14 +123,14 @@ jobs:
123123
awslocal sqs list-queues | grep "test-queue"
124124
125125
- name: Clean up remote pod
126-
run: localstack pod delete --yes ${{ needs.cloud-pods-test.outputs.pod-name }}
126+
run: localstack pod delete --yes ${{ needs.cloud-pods-save-test.outputs.pod-name }}
127127

128128

129129
- name: Verify Cloud Pod deletion
130130
run: |
131131
echo "Verifying that the pod has been deleted..."
132-
if localstack pod list | grep -q ${{ needs.cloud-pods-test.outputs.pod-name }}; then
133-
echo "Pod ${{ needs.cloud-pods-test.outputs.pod-name }} was not deleted."
132+
if localstack pod list | grep -q ${{ needs.cloud-pods-save-test.outputs.pod-name }}; then
133+
echo "Pod ${{ needs.cloud-pods-save-test.outputs.pod-name }} was not deleted."
134134
exit 1
135135
fi
136136
echo "Pod successfully deleted."

0 commit comments

Comments
 (0)