Yarn upgrades sep2023 (#73) #46
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy CI | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
branches: | |
- main | |
jobs: | |
deploy: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install vsce and open vsx | |
run: | | |
npm install -g vsce | |
npm install -g ovsx | |
- name: yarn | |
run: yarn | |
- name: VSCE Publish | |
run: vsce publish -p $env:VSCE_PAT | |
env: | |
VSCE_PAT: ${{ secrets.VSCE_TOKEN }} | |
- name: Open VSX Publish | |
run: npx ovsx publish -p $env:OPEN_VSX_PAT | |
env: | |
OPEN_VSX_PAT: ${{ secrets.OPENVSX }} |