Add publish CI with OIDC trusted publishing and changesets

This commit is contained in:
Matt Kane
2026-04-01 12:01:32 +01:00
parent ca3c2b77e1
commit 4bafdb9781
5 changed files with 56 additions and 0 deletions

View File

@@ -12,5 +12,6 @@
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"bumpVersionsWithWorkspaceProtocolOnly": true,
"ignore": ["@demo/*"]
}

52
.github/workflows/release.yml vendored Normal file
View File

@@ -0,0 +1,52 @@
name: Release
on:
push:
branches:
- main
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
release:
name: Release
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: lts/*
cache: pnpm
registry-url: https://registry.npmjs.org
- name: Install dependencies
run: pnpm install
- name: Build packages
run: pnpm build
- name: Update npm
run: npm install -g npm@latest
- name: Create Release Pull Request or Publish
id: changesets
uses: changesets/action@v1
with:
version: pnpm changeset version
publish: pnpm changeset publish
commit: "ci: release"
title: "ci: release"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

1
.npmrc
View File

@@ -1 +1,2 @@
enable-pre-post-scripts=true
provenance=true

View File

@@ -1,5 +1,6 @@
{
"name": "docs",
"private": true,
"type": "module",
"version": "0.0.1",
"scripts": {

View File

@@ -1,6 +1,7 @@
{
"name": "@emdash-cms/marketplace",
"version": "0.0.1",
"private": true,
"description": "Plugin marketplace Worker for EmDash CMS",
"type": "module",
"main": "src/index.ts",