Skip to content

fix: clarify evaluation prompt structure #46

fix: clarify evaluation prompt structure

fix: clarify evaluation prompt structure #46

Workflow file for this run

name: Release
on:
push:
branches: [main]
permissions:
contents: write
issues: write
packages: write
jobs:
release:
name: Semantic Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
registry-url: https://registry.npmjs.org
- run: npm ci
- run: npm run build
- run: npm test
- run: npm run package
- name: Release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}