From b0c2bc9810c7b3208000d19e1894127e32945338 Mon Sep 17 00:00:00 2001 From: Andrey Ponomarenko Date: Fri, 25 Sep 2020 10:11:44 +0300 Subject: [PATCH] build: fix build action --- .github/workflows/release.yaml | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index eed97ef..0ebf3eb 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -17,7 +17,7 @@ jobs: - name: Install dependencies run: npm install - name: Build - run: tsc && tscpaths -p tsconfig.json -s ./src -o ./dist + run: npm run build - name: Release env: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} diff --git a/package.json b/package.json index 32113ec..1a743ca 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,7 @@ ], "scripts": { "r": "yarn webpack && node dist/index.js", - "build": "yarn tsc && yarn tscpaths -p tsconfig.json -s ./src -o ./dist", + "build": "tsc && tscpaths -p tsconfig.json -s ./src -o ./dist", "release": "node scripts/release.js" }, "dependencies": {