From ff135f79d355149a6b9c339ce6f0d1682f6d7490 Mon Sep 17 00:00:00 2001 From: Marek Fedorovic Date: Mon, 23 Oct 2023 13:05:00 +1100 Subject: [PATCH] feat: Simulate failure and try uninstall step --- .github/workflows/npm_publish_light.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/npm_publish_light.yml b/.github/workflows/npm_publish_light.yml index f92c41dd..44e78e53 100644 --- a/.github/workflows/npm_publish_light.yml +++ b/.github/workflows/npm_publish_light.yml @@ -128,9 +128,12 @@ jobs: SDK_CLIENT_PACKAGE_VERSION: ${{ steps.sdk-client-version.outputs.SDK_CLIENT_PACKAGE_VERSION }} NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: |- + currentDir=$(pwd) cd ${{ matrix.settings.dirSdkJsClient }} ../scripts/cohort/github-actions-ci/unpublish-sdk-version.sh "$SDK_CLIENT_PACKAGE_NAME_SHORT" "$SDK_CLIENT_PACKAGE_VERSION" echo "" + cd $currentDir + cd ${{ matrix.settings.dirSdkJs }} ../../scripts/cohort/github-actions-ci/unpublish-sdk-version.sh "$SDK_JS_PACKAGE_NAME_SHORT" "$SDK_JS_PACKAGE_VERSION"