From 3bd282dd4a5efbe4360d2f60e7b85bcb1b09906e Mon Sep 17 00:00:00 2001 From: IrosTheBeggar Date: Sun, 5 May 2024 10:38:58 -0400 Subject: [PATCH] fix node min version --- .github/workflows/npm-publish.yml | 30 +----------------------------- 1 file changed, 1 insertion(+), 29 deletions(-) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 252ab920..e7990478 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -8,43 +8,15 @@ on: types: [published] jobs: - # build: - # runs-on: ubuntu-latest - # steps: - # - uses: actions/checkout@v2 - # - uses: actions/setup-node@v2 - # with: - # node-version: 12 - # - run: npm ci - # - run: npm test - publish-npm: - # needs: build runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: 12 + node-version: 20 registry-url: https://registry.npmjs.org/ - # - run: npm ci - run: npm publish env: NODE_AUTH_TOKEN: ${{secrets.npm_token}} - # publish-gpr: - # # needs: build - # runs-on: ubuntu-latest - # permissions: - # contents: read - # packages: write - # steps: - # - uses: actions/checkout@v2 - # - uses: actions/setup-node@v2 - # with: - # node-version: 12 - # registry-url: https://npm.pkg.github.com/ - # # - run: npm ci - # - run: npm publish - # env: - # NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}