From 42e4ec539140a833e91a05370b1886e3227bb8e6 Mon Sep 17 00:00:00 2001 From: VitoAlbano Date: Wed, 3 Jun 2026 12:59:24 +0100 Subject: [PATCH] [ci:force] - Removed 'run' as it is not needed --- .github/workflows/pull-request.yml | 4 ++-- .github/workflows/release.yml | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index cb15375348..f80eb60e00 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -182,8 +182,8 @@ jobs: cache-suffix: setup - name: Bundle run: | - pnpm run bundle:js-api - pnpm run bundle:cli + pnpm bundle:js-api + pnpm bundle:cli - name: Save nx cache if: ${{ success() }} uses: ./.github/actions/save-nx-cache diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d78230022b..24670727e9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -58,8 +58,8 @@ jobs: - name: install run: | pnpm install --frozen-lockfile - pnpm run bundle:js-api - pnpm run bundle:cli + pnpm bundle:js-api + pnpm bundle:cli - uses: ./.github/actions/upload-node-modules-and-artifacts release-npm: @@ -100,15 +100,15 @@ jobs: setMigrations(); - name: build libraries run: | - pnpm run build:libs - pnpm run build:schematics + pnpm build:libs + pnpm build:schematics - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 name: release libraries GH registry with: node-version-file: '.nvmrc' registry-url: 'https://npm.pkg.github.com' scope: '@alfresco' - - run: pnpm run publish -- --tag=${{ steps.setup.outputs.npm-tag }} + - run: pnpm publish -- --tag=${{ steps.setup.outputs.npm-tag }} env: NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 @@ -117,7 +117,7 @@ jobs: node-version-file: '.nvmrc' registry-url: 'https://${{ vars.NPM_REGISTRY_ADDRESS }}' scope: '@alfresco' - - run: pnpm run publish -- --tag=${{ steps.setup.outputs.npm-tag }} + - run: pnpm publish -- --tag=${{ steps.setup.outputs.npm-tag }} create-git-tag: runs-on: ubuntu-latest