disable main marketplace publishing as azure dev became non-free #194
This file contains hidden or 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: VSCode Release | |
| on: | |
| push: | |
| branches: [main] | |
| # A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: pnpm/action-setup@v4 | |
| with: | |
| run_install: | | |
| args: [--frozen-lockfile, --strict-peer-dependencies] | |
| - run: pnpm lint | |
| - run: pnpm tsc | |
| - run: pnpx zardoy-release vscode-extension | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
| VSCE_PAT: ${{ secrets.VSCE_PAT }} | |
| OVSX_PAT: ${{ secrets.OVSX_PAT }} |