added proper statusbar error background, updated screenshot #5
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: Draft GitHub Release | |
on: | |
push: | |
tags: | |
- "v*" | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
cache: npm | |
- name: Install npm dependencies | |
run: npm ci | |
- name: Package vscode extension | |
run: npm run package -- -o phocus-vscode.vsix | |
- name: Draft GitHub Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
draft: true | |
files: phocus-vscode.vsix | |
tag_name: ${{ github.ref }} | |
body_path: CHANGELOG.md |