Skip to content

fix: repair release automation #61

fix: repair release automation

fix: repair release automation #61

Workflow file for this run

name: Release
on:
push:
branches:
- main
jobs:
release:
name: Test & Release
runs-on: ubuntu-latest
permissions:
contents: write
issues: write
pull-requests: write
id-token: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 22.14.0
registry-url: https://registry.npmjs.org
- name: Use npm trusted-publishing capable CLI
run: npm install -g npm@11
- name: Install dev dependencies
run: npm ci
- name: Run tests
run: npm run test:gsdd
- name: Audit packed tarball surface
run: npm pack --dry-run --json
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_CONFIG_PROVENANCE: "true"
run: npx semantic-release