0.0.11 #1
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: Publish VSCode Extension | |
on: | |
release: | |
types: [created] | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v2 | |
- name: Install Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18.x | |
cache: npm | |
- name: Install dependencies | |
run: npm ci | |
- name: Build Extension | |
run: npm run package | |
- name: Package Extension | |
run: npm run vsce-package | |
- name: Publish Extension | |
if: success() && startsWith(github.ref, 'refs/tags/') | |
run: npm run deploy | |
env: | |
VSCE_PAT: ${{ secrets.VSCE_PAT }} | |
- name: Generate Changelog | |
if: success() && startsWith(github.ref, 'refs/tags/') | |
run: | | |
git log $(git describe --tags --abbrev=0)..HEAD --oneline > CHANGELOG.txt | |
cat CHANGELOG.txt | |
- name: Create GitHub Release | |
if: success() && startsWith(github.ref, 'refs/tags/') | |
uses: ncipollo/release-action@v1 | |
with: | |
artifacts: zenml.vsix | |
bodyFile: CHANGELOG.txt | |
tag: ${{ github.ref_name }} | |
token: ${{ secrets.GITHUB_TOKEN }} |