Skip to content

Commit acb1324

Browse files
committed
Fix reference to build-server outputs
1 parent 5d4c54e commit acb1324

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/gitops-staging.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -194,10 +194,10 @@ jobs:
194194
- name: Pull and Run Image
195195
if: ${{ needs.changes.outputs.server == 'true' }}
196196
run: |
197-
echo "Pulling image: ${{ steps.build.outputs.image-tag }}"
198-
docker pull ${{ steps.build.outputs.image-tag }}
197+
echo "Pulling image: ${{ steps.build-server.outputs.image-tag }}"
198+
docker pull ${{ steps.build-server.outputs.image-tag }}
199199
echo "Running image..."
200-
docker run --rm ${{ steps.build.outputs.image-tag }} version
200+
docker run --rm ${{ steps.build-server.outputs.image-tag }} version
201201
202202
update-gitops-and-deploy:
203203
runs-on: ubicloud-standard-4

0 commit comments

Comments
 (0)