File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 4242 - codebuild-runner-${{ github.run_id }}-${{ github.run_attempt }}
4343 fleet:x86-build-runner
4444 outputs :
45- image_uri : ${{ steps.image_uri_build.outputs.IMAGE_URI }}
45+ my_output : ${{ steps.image_uri_build.outputs.image_uri }}
4646 steps :
4747 - uses : actions/checkout@v5
4848 - run : .github/scripts/runner_setup.sh
5757 IMAGE_URI=${{ secrets.AWS_ACCOUNT_ID }}.dkr.ecr.${{ secrets.AWS_REGION }}.amazonaws.com/ci:sglang-0.5.5-gpu-py312-cu129-ubuntu22.04-sagemaker-pr-${{ github.event.pull_request.number }}
5858 echo "Image URI to build: $IMAGE_URI"
5959 echo "IMAGE_URI=$IMAGE_URI" >> $GITHUB_ENV
60- echo "IMAGE_URI=$IMAGE_URI " >> $GITHUB_OUTPUT
60+ echo "image_uri=some_image_uri " >> $GITHUB_OUTPUT
6161
6262 - name : Build image
6363 run : |
@@ -93,14 +93,14 @@ jobs:
9393
9494 - name : echo container
9595 run : |
96- echo ${{ needs.build-sglang-image.outputs.image_uri }}
96+ echo ${{ needs.build-sglang-image.outputs.my_output }}
9797
9898 - name : Container pull
9999 uses : ./.github/actions/container-pull
100100 with :
101101 aws_region : ${{ secrets.AWS_REGION }}
102102 aws_account_id : ${{ secrets.AWS_ACCOUNT_ID }}
103- image_uri : ${{ needs.build-sglang-image.outputs.image_uri }}
103+ image_uri : ${{ needs.build-sglang-image.outputs.my_output }}
104104
105105 - name : Setup for SGLang datasets
106106 run : |
You can’t perform that action at this time.
0 commit comments