chore: update ci

This commit is contained in:
Mattia Astorino 2020-09-05 09:45:47 +02:00
parent 13554ca10a
commit de4ee1eceb
No known key found for this signature in database
GPG key ID: CDFA82D8B1132C65

View file

@ -50,8 +50,6 @@ jobs:
needs: prepare needs: prepare
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Build extension
run: yarn build
- name: Get yarn cache directory path - name: Get yarn cache directory path
id: yarn-cache-dir-path id: yarn-cache-dir-path
@ -69,6 +67,9 @@ jobs:
run: yarn --frozen-lockfile run: yarn --frozen-lockfile
if: steps.cache-yarn-cache.outputs.cache-hit != 'true' || steps.cache-node-modules.outputs.cache-hit != 'true' if: steps.cache-yarn-cache.outputs.cache-hit != 'true' || steps.cache-node-modules.outputs.cache-hit != 'true'
- name: Build extension
run: yarn build
- uses: lannonbr/vsce-action@master - uses: lannonbr/vsce-action@master
with: with:
args: "publish -p $VSCE_TOKEN" args: "publish -p $VSCE_TOKEN"