Skip to content

Commit 0e2c0c9

Browse files
feat: auto-release infrastructure
1 parent b3f690e commit 0e2c0c9

File tree

255 files changed

+11149
-32878
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

255 files changed

+11149
-32878
lines changed

.github/workflows/automerge.yml

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

.github/workflows/npm-publish-github-packages.yml

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

.github/workflows/release.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Release
2+
on:
3+
push:
4+
branches:
5+
- master
6+
7+
permissions:
8+
contents: read
9+
10+
jobs:
11+
release:
12+
name: Release
13+
runs-on: ubuntu-latest
14+
permissions:
15+
contents: write # to be able to publish a GitHub release
16+
issues: write # to be able to comment on released issues
17+
pull-requests: write # to be able to comment on released pull requests
18+
id-token: write # to enable use of OIDC for npm provenance
19+
steps:
20+
- name: Checkout
21+
uses: actions/checkout@v4
22+
with:
23+
fetch-depth: 0
24+
- name: Setup Node.js
25+
uses: actions/setup-node@v4
26+
with:
27+
node-version: "lts/*"
28+
- name: Install dependencies
29+
run: npm clean-install
30+
- name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
31+
run: npm audit signatures
32+
- name: Release
33+
env:
34+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
35+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
36+
run: npx semantic-release

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
node_modules/

LICENSE.txt

Whitespace-only changes.

node_modules/.package-lock.json

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

node_modules/@bufbuild/protobuf/README.md

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

node_modules/@bufbuild/protobuf/dist/cjs/clone.d.ts

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

node_modules/@bufbuild/protobuf/dist/cjs/clone.js

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

node_modules/@bufbuild/protobuf/dist/cjs/codegenv1/boot.d.ts

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

0 commit comments

Comments
 (0)