From 8db22e5d2c6c09e0040d07b94f507136f9395967 Mon Sep 17 00:00:00 2001 From: Mattia Astorino Date: Sat, 5 Sep 2020 09:05:09 +0200 Subject: [PATCH] chore: update workflow --- .github/workflows/release.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6b8e98a..7cfdfb0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,10 +12,11 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - run: - - npm install - - npm version minor - - npm build + run: yarn install + - name: Bump version + run: yarn version --minor + - name: Build extension + run: yarn build - uses: lannonbr/vsce-action@master with: args: "publish -p $VSCE_TOKEN"