From 58c178431114a7e2883dd72cb41e96463e55c2cb Mon Sep 17 00:00:00 2001 From: DominikIwanek Date: Fri, 21 Aug 2026 09:14:17 +0200 Subject: [PATCH] Release 8.0.3 - Fix PNG signature images in PDF viewer --- .github/workflows/release.yml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 54862efa7e..38a1b40cc3 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,15 +40,19 @@ jobs: npm run build:libs npm run build:schematics - - name: Configure NPM Registry + - name: Setup NPM Registry if: ${{ !inputs.dry-run }} - run: | - npm config set //registry.npmjs.org/:_authToken "${{ secrets.NPM_REGISTRY_TOKEN }}" - npm config list + uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 + with: + node-version-file: '.nvmrc' + registry-url: 'https://${{ vars.NPM_REGISTRY_ADDRESS }}' + scope: '@alfresco' - name: Publish to NPM if: ${{ !inputs.dry-run }} - run: npx nx run-many -t npm-publish --tag=branch + run: npm run publish -- --tag=branch + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_REGISTRY_TOKEN }} - name: Dry run summary if: ${{ inputs.dry-run }}