From 1532458e3df1918be221249da6d70c4c47e6364f Mon Sep 17 00:00:00 2001 From: demmorou Date: Tue, 30 Apr 2024 08:30:33 -0300 Subject: [PATCH] fix: fixing github workflows --- .github/workflows/logger_npm_publish.yaml | 3 ++- packages/logger/package.json | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/logger_npm_publish.yaml b/.github/workflows/logger_npm_publish.yaml index 9260520..763bcbf 100644 --- a/.github/workflows/logger_npm_publish.yaml +++ b/.github/workflows/logger_npm_publish.yaml @@ -15,8 +15,9 @@ jobs: - uses: pnpm/action-setup@v3 with: version: 8 + node-version: '20.x' - run: pnpm logger i - run: pnpm logger build - - run: pnpm logger publish + - run: pnpm logger publish --no-git-check env: NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} diff --git a/packages/logger/package.json b/packages/logger/package.json index b092181..1eea9bb 100644 --- a/packages/logger/package.json +++ b/packages/logger/package.json @@ -1,8 +1,8 @@ { "name": "@demmorou/logger", - "version": "1.0.7", + "version": "1.0.8", "author": "Deusimar (@demmorou)", - "description": "Custom logger implementation with winston", + "description": "Custom logger implementation based on winston. For any Node.js application.", "main": "dist/index.js", "types": "dist/index.d.ts", "license": "MIT",