Skip to content

Commit

Permalink
fix(build): add local image registry credentials to e2e step (#490)
Browse files Browse the repository at this point in the history
E2E needs a local image registry to push the images for upgrade
and self-hosted cluster testing.
  • Loading branch information
thunderboltsid authored Dec 3, 2024
1 parent b983688 commit a81d90a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,13 @@ jobs:
exit 1
fi
- name: Login to Internal Container Registry
uses: docker/login-action@v3
with:
registry: ${{ secrets.LOCAL_IMAGE_REGISTRY }}
username: ${{ secrets.LOCAL_IMAGE_REGISTRY_USERNAME }}
password: ${{ secrets.LOCAL_IMAGE_REGISTRY_TOKEN }}

- name: Test build
run: devbox run -- make ${{ inputs.make-target }} LABEL_FILTERS='${{ inputs.e2e-labels }}'
env:
Expand Down

0 comments on commit a81d90a

Please sign in to comment.