Fixed bogus code in competitive companion #15
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
| jobs: | ||
|
Check failure on line 1 in .github/workflows/release.yml
|
||
| name: Release | ||
| on: | ||
| push: | ||
| tags: | ||
| - "*.*.*" | ||
| jobs: | ||
| release: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Download build artifact | ||
| uses: actions/download-artifact@v4 | ||
| with: | ||
| name: dist | ||
| path: dist | ||
| - name: Checkout repository | ||
| uses: actions/checkout@v4 | ||
| - name: Set up Node.js | ||
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: "20" | ||
| - name: Install vsce | ||
| run: npm install -g @vscode/vsce | ||
| - name: Package VSCode extension | ||
| run: vsce package | ||
| - name: Create GitHub Release | ||
| uses: softprops/action-gh-release@v2 | ||
| with: | ||
| files: "*.vsix" | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| - name: Publish to VSCode Marketplace | ||
| run: vsce publish -p ${{ secrets.VSCE_TOKEN }} | ||