From 9a6ab678f9618a3409de874596ed63ecdd7d72f6 Mon Sep 17 00:00:00 2001 From: Wojciech Duda <69160975+wojd0@users.noreply.github.com> Date: Thu, 4 Jul 2024 16:31:14 +0200 Subject: [PATCH] fix e2es [ci:force] --- .github/actions/e2e/action.yml | 8 ++++---- scripts/github/release/release-demoshell-docker.sh | 2 +- scripts/github/release/release-storybook-docker.sh | 4 ++-- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/actions/e2e/action.yml b/.github/actions/e2e/action.yml index 8e46a6a05c..7cde24b1ee 100644 --- a/.github/actions/e2e/action.yml +++ b/.github/actions/e2e/action.yml @@ -99,7 +99,7 @@ runs: run: | echo "running: check EXTERNAL-CS is UP" set -u; - ./node_modules/@alfresco/adf-cli/bin/adf-cli \ + ./dist/libs/cli/bin/adf-cli \ check-cs-env \ --host "$EXTERNAL_ACS_HOST" \ -u "$E2E_USERNAME" \ @@ -111,7 +111,7 @@ runs: run: | echo "Running: Check CS is UP" set -u; - ./node_modules/@alfresco/adf-cli/bin/adf-cli \ + ./dist/libs/cli/bin/adf-cli \ check-cs-env \ --host "$E2E_HOST" \ -u "$E2E_USERNAME" \ @@ -123,7 +123,7 @@ runs: run: | echo "Running: check PS is UP" set -u; - ./node_modules/@alfresco/adf-cli/bin/adf-cli init-aps-env \ + ./dist/libs/cli/bin/adf-cli init-aps-env \ --host "$E2E_HOST" \ -u "$E2E_USERNAME" \ -p "$E2E_PASSWORD" \ @@ -135,7 +135,7 @@ runs: run: | echo "running: check PS-CLOUD is UP" set -u; - ./node_modules/@alfresco/adf-cli/bin/adf-cli init-aae-env \ + ./dist/libs/cli/bin/adf-cli init-aae-env \ --oauth "$E2E_IDENTITY_HOST_APA" \ --host "$E2E_HOST_APA" \ --modelerUsername "$E2E_MODELER_USERNAME" \ diff --git a/scripts/github/release/release-demoshell-docker.sh b/scripts/github/release/release-demoshell-docker.sh index 2de2776456..d4ac102eaa 100755 --- a/scripts/github/release/release-demoshell-docker.sh +++ b/scripts/github/release/release-demoshell-docker.sh @@ -8,7 +8,7 @@ echo "ℹ️ demo-shell: Running the docker with tag" $TAGS DOCKER_PROJECT_ARGS="PROJECT_NAME=demo-shell" # Publish Image to docker -./node_modules/@alfresco/adf-cli/bin/adf-cli docker \ +./dist/libs/cli/bin/adf-cli docker \ --loginCheck \ --loginUsername "$DOCKER_REPOSITORY_USER" \ --loginPassword "$DOCKER_REPOSITORY_PASSWORD" \ diff --git a/scripts/github/release/release-storybook-docker.sh b/scripts/github/release/release-storybook-docker.sh index 7d9dca1df4..36bfe432df 100755 --- a/scripts/github/release/release-storybook-docker.sh +++ b/scripts/github/release/release-storybook-docker.sh @@ -10,7 +10,7 @@ DOCKER_PROJECT_ARGS="PROJECT_NAME=storybook/stories" echo "{}" > $DIR/../../../dist/storybook/stories/app.config.json # Publish Image to docker -./node_modules/@alfresco/adf-cli/bin/adf-cli docker \ +./dist/libs/cli/bin/adf-cli docker \ --loginCheck \ --loginUsername "$DOCKER_REPOSITORY_USER" \ --loginPassword "$DOCKER_REPOSITORY_PASSWORD" \ @@ -19,4 +19,4 @@ echo "{}" > $DIR/../../../dist/storybook/stories/app.config.json --buildArgs "$DOCKER_PROJECT_ARGS" \ --dockerTags "$TAGS" \ --pathProject "$(pwd)" \ - "$@" \ No newline at end of file + "$@"