Browse Source

Update windows publish to add deps

Get msvs version

Set msvs_version 2019
master
jeffvli 3 years ago
parent
commit
e3e7883881
  1. 8
      .github/workflows/publish-windows.yml

8
.github/workflows/publish-windows.yml

@ -9,7 +9,7 @@ jobs:
strategy: strategy:
matrix: matrix:
os: [windows-latest] os: [windows-2019]
steps: steps:
- name: Checkout git repo - name: Checkout git repo
@ -23,6 +23,12 @@ jobs:
- name: Setup yarn - name: Setup yarn
run: npm install -g yarn run: npm install -g yarn
- name: Set msvs_version
run: npm config set msvs_version "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise"
- name: Test
run: echo "$(npm config get msvs_version)"
- name: Get yarn cache directory path - name: Get yarn cache directory path
id: yarn-cache-dir-path id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)" run: echo "::set-output name=dir::$(yarn cache dir)"

Loading…
Cancel
Save