From 76587991c88f4d78e0ed8150c2ad685e496744b0 Mon Sep 17 00:00:00 2001 From: Chris Oliver Date: Fri, 17 Feb 2023 17:48:27 -0600 Subject: [PATCH] Update GH actions release step --- .github/workflows/release-package.yml | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/.github/workflows/release-package.yml b/.github/workflows/release-package.yml index eb838e3..999b0fc 100644 --- a/.github/workflows/release-package.yml +++ b/.github/workflows/release-package.yml @@ -5,18 +5,7 @@ on: types: [created] jobs: - build: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-node@v3 - with: - node-version: 16 - - run: npm ci - - run: npm test - publish-gpr: - needs: build runs-on: ubuntu-latest permissions: packages: write @@ -25,9 +14,8 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: 16 + node-version: 18 registry-url: https://npm.pkg.github.com/ - - run: npm ci - run: npm publish env: NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}