add screenshot, update changelog and readme #10
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: Create Release | |
on: | |
push: | |
tags: | |
- "*" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Extract Version | |
id: version_step | |
run: | | |
echo "version=${GITHUB_REF#$"refs/tags/"}" >> $GITHUB_OUTPUT | |
- name: Print Version | |
run: | | |
echo ${{ steps.version_step.outputs.version }} | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: "npm" | |
- name: Install dependencies | |
run: npm ci | |
- name: Update package.json version | |
uses: restackio/[email protected] | |
with: | |
file: package.json | |
fields: '{"version": "${{ steps.version_step.outputs.version }}"}' | |
- name: Package VSCode extension | |
run: | | |
npm run compile | |
npm run package-extension | |
- name: Create GitHub Release | |
uses: softprops/action-gh-release@v2 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
generate_release_notes: true | |
files: | | |
./*.vsix | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |