From 4eb9bd81ed39b47bc4a100b8740bf98e6713f3dc Mon Sep 17 00:00:00 2001 From: Andrey Ponomarenko Date: Fri, 25 Sep 2020 10:07:12 +0300 Subject: [PATCH] build: fix build release --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index bb6a13f..eed97ef 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: npm tsc && npm tscpaths -p tsconfig.json -s ./src -o ./dist + run: tsc && tscpaths -p tsconfig.json -s ./src -o ./dist - name: Release env: GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}