Skip to content

Add changelog section for v1.1.12 #5

Add changelog section for v1.1.12

Add changelog section for v1.1.12 #5

Workflow file for this run

name: Release VSIX
on:
push:
tags:
- 'v*'
jobs:
build:
uses: ./.github/workflows/build.yml
release:
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download VSIX Artifact
uses: actions/download-artifact@v4
with:
name: ${{ env.VSIX_NAME }}
path: .
- name: Get Release Notes
id: release_notes
run: bb get-release-notes ${{ github.ref_name }} >> $GITHUB_OUTPUT
- name: Release
uses: softprops/action-gh-release@v2
with:
body: |
$(bb release-notes ${{ github.ref_name }})
files: ${{ env.VSIX_NAME }}
# - name: Publish to VS Code Marketplace
# run: npx vsce publish -p ${{ secrets.VSCE_TOKEN }}
# - name: Publish to Open VSX
# run: npx ovsx publish -p ${{ secrets.OVSX_TOKEN }}