Prepend with ./ #8
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: Release VSIX | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build: | |
uses: ./.github/workflows/build.yml | |
clojure: | |
uses: ./.github/workflows/clojure.yml | |
release: | |
needs: | |
- clojure | |
- 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: Clojure dependency and dependencies | |
- 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 }} |