Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 12 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,14 +69,23 @@ jobs:
with:
node-version: 18

- name: Install specs CLI
run: npm install -g specs
- name: Checkout specs tool
uses: actions/checkout@v4
with:
repository: ganesh47/specs
path: .specs-tool
- name: Install specs tool deps
working-directory: .specs-tool
run: npm install
- name: Build specs CLI
working-directory: .specs-tool
run: npm run build --workspace packages/specs-cli

- name: spec-kit availability
run: npm run spec-kit:check

- name: Run specs coverage for artifacts
run: specs coverage
run: node .specs-tool/packages/specs-cli/bin/specs.js coverage

- name: Extract changelog section
id: notes
Expand Down
Loading