From 35658492c822152072f50856252bd80c2463d0b0 Mon Sep 17 00:00:00 2001 From: Andrey Ponomarenko Date: Fri, 25 Sep 2020 08:46:40 +0300 Subject: [PATCH] build: fix gh action --- .github/workflows/release.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 40c8e05..5d1d80b 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -10,9 +10,11 @@ test-and-release: runs-on: ubuntu-18.04 steps: - name: Install dependencies - run: yarn + run: | + yarn - name: Release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} - run: yarn release + run: | + yarn release