From cb1e381e494e9ecc1b1ba556380fd88002455df3 Mon Sep 17 00:00:00 2001 From: Rastislav Date: Mon, 23 Oct 2023 20:20:44 +0200 Subject: [PATCH] Publishing --- .github/workflows/publish.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 0665260..beca3a9 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -7,14 +7,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Setup Node - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: - node-version: '12.x' + node-version: '16.x' registry-url: 'https://registry.npmjs.org' - name: Install & Build 🔧 - run: npm ci && npm run build + run: npm i && npm run build - name: Publish package on NPM 📦 run: npm publish --access public env: