Skip to content

Commit e528859

Browse files
domenicclaude
andcommitted
Modernize release infrastructure
- Add tag-triggered publish workflow (npm publish via GitHub Actions OIDC) - Remove Changelog.md in favor of GitHub Releases - Remove AUTHORS.txt, .mailmap, and the update-authors script - Add MAINTAINERS.md with releasing instructions and release notes style guide Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 00522ce commit e528859

File tree

6 files changed

+60
-2669
lines changed

6 files changed

+60
-2669
lines changed

.github/workflows/publish.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Publish
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
8+
permissions:
9+
id-token: write
10+
contents: read
11+
12+
jobs:
13+
publish:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/checkout@v6
17+
- uses: actions/setup-node@v6
18+
with:
19+
node-version: lts/*
20+
registry-url: https://registry.npmjs.org
21+
- run: npm ci
22+
- run: npm publish

.mailmap

Lines changed: 0 additions & 29 deletions
This file was deleted.

0 commit comments

Comments
 (0)