Merge branch 'release/1.3.24' into main #75
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
# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions | |
name: Publish | |
on: | |
push: | |
tags: | |
- v* | |
jobs: | |
publish: | |
name: Publish VS Code Extension | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Tag | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.event.push.ref }} | |
- name: Use Node.js 16.* | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
cache: 'npm' | |
- name: Install NPM Packages | |
run: | | |
npm -v | |
npm ci | |
npm install -g vsce ovsx semver | |
- name: Create Package | |
run: vsce package | |
- name: Publish Package | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
file=$(realpath $(ls -t *.vsix | head -1)) | |
vsce publish -i $file -p ${{ secrets.VSCE_TOKEN }} | |
npx ovsx publish $file -p ${{ secrets.OVSX_TOKEN }} | |
gh release create '${{ github.ref_name }}' -n "See [Changelog](https://github.com/Serhioromano/vscode-gitflow/blob/master/CHANGELOG.md) for details." $file |