From 193170451cc7b9d236b10a2cd8cc8bcae0523bf4 Mon Sep 17 00:00:00 2001 From: Andrey Ponomarenko Date: Fri, 25 Sep 2020 08:47:55 +0300 Subject: [PATCH] build: fix gh action --- .github/workflows/release.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 5d1d80b..9393950 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -9,9 +9,14 @@ test-and-release: name: release runs-on: ubuntu-18.04 steps: + - name: Install yarn + run: | + npm install -g yarn + - name: Install dependencies run: | yarn + - name: Release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}