Skip to content

Try reuse clojure job in a different way #7

Try reuse clojure job in a different way

Try reuse clojure job in a different way #7

Workflow file for this run

name: Release VSIX
on:
push:
tags:
- 'v*'
jobs:
build:
uses: ./.github/workflows/build.yml
clojure:
uses: .github/workflows/clojure.yml

Check failure on line 12 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

invalid value workflow reference: no version specified
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 }}