From fab2f17d83e8896d797beec0bddd43f6510b5073 Mon Sep 17 00:00:00 2001 From: Patrick Rodgers Date: Mon, 22 Apr 2024 10:49:57 -0400 Subject: [PATCH 1/2] Update package.json --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 79e347ea2..1d96dba2e 100644 --- a/package.json +++ b/package.json @@ -44,6 +44,7 @@ "buildDebug": "npm run clean && npm run pnp-buildsystem-init && pnpbuild -n build-debug", "clean": "del-cli \"./?(dist|site|build|buildsystem-config.js)\"", "lint": "eslint ./packages ./test --ext .ts", + "just-publish": "npm run pnp-buildsystem-init && pnpbuild -n publish", "package": "npm run pnp-buildsystem-init && pnpbuild -n package", "pnp-buildsystem-init": "tsc -p tsconfig.buildsystem.json", "pnp-publish-beta": "npm run pnp-buildsystem-init && pnpbuild -n publish-beta", From e26b1b52ac87a813ed52f2cfd3c9bcf9d8e243ac Mon Sep 17 00:00:00 2001 From: Patrick Rodgers Date: Mon, 22 Apr 2024 10:51:26 -0400 Subject: [PATCH 2/2] Update publish.yml --- .github/workflows/publish.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 3fcc1d17b..0448cbb32 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,14 +11,14 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: main # setup nodejs - - name: Use Node.js 16 + - name: Use Node.js 18 uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 registry-url: 'https://registry.npmjs.org' cache: 'npm' cache-dependency-path: package-lock.json @@ -26,10 +26,6 @@ jobs: # Run the npm install - run: npm ci - # Runs a set of commands using the runners shell - - name: Test - not setup - run: echo this would be the tests - # Runs a single command using the runners shell - name: Run publishing scripts run: |