Skip to content

Add on.workflow_call trigger #4

Add on.workflow_call trigger

Add on.workflow_call trigger #4

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: Release
uses: softprops/action-gh-release@v2
with:
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 }}