Skip to content

fix: Windows path handling in project-name validator #8

fix: Windows path handling in project-name validator

fix: Windows path handling in project-name validator #8

Workflow file for this run

name: release
on:
push:
tags:
- 'v*.*.*'
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
registry-url: 'https://registry.npmjs.org'
cache: npm
- run: npm ci
- run: npm run build
- run: npm run test:smoke
- run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- uses: softprops/action-gh-release@v2
with:
generate_release_notes: true
body: |
See [CHANGELOG.md](./CHANGELOG.md) for the human-readable summary.
Inspired by [Andrej Karpathy's LLM Wiki gist](https://gist.github.com/karpathy/442a6bf555914893e9891c11519de94f).
See [INSPIRATION.md](./INSPIRATION.md) for full attribution.