Skip to content

Commit

Permalink
bug: fix incorrect prefix for image (#929)
Browse files Browse the repository at this point in the history
/kind bug
/area ci

* fixes bug where $IMG had incorrect registry prefix
* adds docker pull command to ensure that image is in local docker context before importing
  • Loading branch information
Ressetkk committed Jul 10, 2024
1 parent d57e180 commit 9500993
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/ui-tests-periodic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ jobs:
sudo echo "127.0.0.1 local.kyma.dev" | sudo tee -a /etc/hosts
wget -q -O - https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh | sudo bash
sha=$(./scripts/get_latest_build_sha.sh)
IMG=europe-docker.pkg.dev/kyma-project/dev/istio-manager:"$sha" ./tests/ui/scripts/k3d-ci-kyma-dashboard-integration.sh stage
docker pull europe-docker.pkg.dev/kyma-project/prod/istio-manager:"$sha"
IMG=europe-docker.pkg.dev/kyma-project/prod/istio-manager:"$sha" ./tests/ui/scripts/k3d-ci-kyma-dashboard-integration.sh stage
- uses: actions/upload-artifact@v4
if: always()
name: Export Cypress output
Expand Down

0 comments on commit 9500993

Please sign in to comment.