From e617b85faaf7b2dc70fb0c909cee96ef05844550 Mon Sep 17 00:00:00 2001 From: DominikIwanek Date: Thu, 20 Aug 2026 15:47:34 +0200 Subject: [PATCH] Release 8.0.3 - Fix PNG signature images in PDF viewer --- .github/actions/setup/action.yml | 8 +++----- .github/workflows/release.yml | 14 +++++++------- 2 files changed, 10 insertions(+), 12 deletions(-) diff --git a/.github/actions/setup/action.yml b/.github/actions/setup/action.yml index 436e1fa0aa..322be750bf 100644 --- a/.github/actions/setup/action.yml +++ b/.github/actions/setup/action.yml @@ -25,13 +25,11 @@ runs: - name: Set consistent machine ID for Nx cache shell: bash run: echo "nx-github-actions" | sudo tee /etc/machine-id > /dev/null - - name: Setup pnpm - uses: pnpm/action-setup@0977fd99725f1db4007ccb2928dbb4e90d06cc86 # v6.0.10 - name: Setup Node uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 with: node-version-file: '.nvmrc' - cache: 'pnpm' + cache: 'npm' - name: get latest tag sha if: ${{ inputs.full-setup == 'true' }} id: tag-sha @@ -42,10 +40,10 @@ runs: uses: ./.github/actions/set-npm-tag - name: Install dependencies shell: bash - run: pnpm install --frozen-lockfile + run: npm ci - name: Security audit shell: bash - run: pnpm audit --audit-level=critical + run: npm audit --audit-level=critical - name: Restore nx cache uses: actions/cache/restore@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 with: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 591cca43f8..646806ad80 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,9 +46,9 @@ jobs: - uses: ./.github/actions/setup - name: install run: | - pnpm install --frozen-lockfile - pnpm bundle:js-api - pnpm bundle:cli + npm ci + npx nx run js-api:bundle + npx nx run cli:bundle - uses: ./.github/actions/upload-node-modules-and-artifacts release-npm: @@ -88,15 +88,15 @@ jobs: setMigrations(); - name: build libraries run: | - pnpm build:libs - pnpm build:schematics + npm run build:libs + npm run build:schematics - uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.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 }} --provenance=false ${{ steps.set-dryrun.outputs.dryrun }} + - run: npm run publish --tag ${{ steps.setup.outputs.npm-tag }} --provenance=false ${{ steps.set-dryrun.outputs.dryrun }} env: NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 @@ -105,7 +105,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 }} ${{ steps.set-dryrun.outputs.dryrun }} + - run: npm run publish --tag ${{ steps.setup.outputs.npm-tag }} ${{ steps.set-dryrun.outputs.dryrun }} create-git-tag: runs-on: ubuntu-latest