bump version #54
Workflow file for this run
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: Release | |
on: | |
push: | |
tags: | |
- v1.[0-9]+.[0-9]+ | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout VSCodeVim | |
uses: actions/checkout@v3 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: yarn | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Lint | |
run: yarn lint | |
- name: Build | |
run: gulp webpack | |
- name: Test | |
run: | | |
gulp prepare-test | |
xvfb-run -a yarn test | |
- name: Build extension package | |
id: build_vsix | |
run: | | |
yarn package; | |
echo ::set-output name=vsix_path::$(ls *.vsix); | |
- name: Create release on GitHub | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: ${{ github.ref }} | |
draft: false | |
prerelease: false | |
- name: Upload .vsix as release asset to GitHub | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: ${{ steps.build_vsix.outputs.vsix_path }} | |
asset_name: ${{ steps.build_vsix.outputs.vsix_path }} | |
asset_content_type: application/zip | |
- name: Publish to VSCode Extension Marketplace | |
run: yarn run vsce publish --yarn | |
env: | |
VSCE_PAT: ${{ secrets.VSCE_PAT }} | |
- name: Publish to Open VSX Registry | |
uses: HaaLeo/publish-vscode-extension@v1 | |
id: publishToOpenVSX | |
with: | |
pat: ${{ secrets.OPEN_VSX_TOKEN }} |