Skip to content

Commit

Permalink
fix: use ghcr image for e2e test during release
Browse files Browse the repository at this point in the history
Signed-off-by: jerryzhuang <[email protected]>
  • Loading branch information
zhuangqh committed Jan 30, 2025
1 parent c6bfc52 commit 872d1a6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/e2e-base-setup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,17 @@ jobs:
echo "REGISTRY=${{ inputs.node_provisioner }}${rand}.azurecr.io" >> $GITHUB_ENV
echo "RUN_LLAMA_13B=false" >> $GITHUB_ENV
- name: Set Registry
if: ${{ inputs.isRelease }}
run: |
echo "REGISTRY=${{ inputs.registry }}" >> $GITHUB_ENV
echo "VERSION=$(echo ${{ inputs.tag }} | tr -d v)" >> $GITHUB_ENV
- id: set-outputs
run: |
echo "cluster_name=${CLUSTER_NAME}" >> $GITHUB_OUTPUT
echo "registry=${REGISTRY}" >> $GITHUB_OUTPUT
echo "run_llama_13b=${RUN_LLAMA_13B}" >> $GITHUB_OUTPUT
echo "registry=${{ env.REGISTRY }}" >> $GITHUB_OUTPUT
echo "run_llama_13b=${{ env.RUN_LLAMA_13B }}" >> $GITHUB_OUTPUT
- name: Remove existing Go modules directory
run: sudo rm -rf ~/go/pkg/mod
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
run: |
echo "REGISTRY=${{ inputs.registry }}" >> $GITHUB_ENV
echo "VERSION=$(echo ${{ inputs.tag }} | tr -d v)" >> $GITHUB_ENV
- name: build adapter image
shell: bash
run: |
Expand Down

0 comments on commit 872d1a6

Please sign in to comment.