From 467182ba0fd2cc08b303c45240275de7fe0d8f48 Mon Sep 17 00:00:00 2001 From: Patrick Sullivan Date: Mon, 22 Jul 2024 07:42:13 -0400 Subject: [PATCH] feat(monorepo): Remove the Nx-Cloud configuration --- action.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/action.yml b/action.yml index 739d038..aee84d8 100644 --- a/action.yml +++ b/action.yml @@ -78,17 +78,17 @@ runs: run_install: false package_json_file: ${{ inputs.workingDirectory }}/package.json - - name: Install Nx-Cloud CLI - shell: bash - if: inputs.packageManager == 'pnpm' - run: pnpm i nx-cloud -g - working-directory: ${{ inputs.workingDirectory }} + # - name: Install Nx-Cloud CLI + # shell: bash + # if: inputs.packageManager == 'pnpm' + # run: pnpm i nx-cloud -g + # working-directory: ${{ inputs.workingDirectory }} - - name: Start Nx Cloud CI run - shell: bash - if: inputs.packageManager == 'pnpm' - run: pnpm exec nx-cloud start-ci-run --distribute-on=".nx/workflows/dynamic-changesets.yaml" - working-directory: ${{ inputs.workingDirectory }} + # - name: Start Nx Cloud CI run + # shell: bash + # if: inputs.packageManager == 'pnpm' + # run: pnpm exec nx-cloud start-ci-run --distribute-on=".nx/workflows/dynamic-changesets.yaml" + # working-directory: ${{ inputs.workingDirectory }} # - name: setup node # uses: actions/setup-node@v4