-
Notifications
You must be signed in to change notification settings - Fork 167
63 lines (52 loc) · 1.93 KB
/
publish.yml
File metadata and controls
63 lines (52 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: Publish
on:
release:
types:
- published
permissions:
id-token: write # Required for OIDC / npmjs publish
jobs:
publish:
name: Publish to npm
if: ${{ github.repository_owner == 'accordproject' }}
runs-on: ubuntu-latest
environment: production
steps:
- name: git checkout
uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: '20'
registry-url: 'https://registry.npmjs.org'
cache: 'npm'
# Ensure npm 11.5.1 or later for trusted publishing
- run: npm install -g npm@latest
- run: npm ci
- run: npm run build --if-present
- name: tag
id: tag
run: |
node ./scripts/tag.js ${{ github.event.release.tag_name }}
- name: build and publish
run: |
node ./scripts/bump_version.js ${{ github.event.release.tag_name }}
npm version --workspaces --include-workspace-root --no-git-tag-version --yes --exact ${{ github.event.release.tag_name }}
npm publish --workspaces --access public --provenance ${{ steps.tag.outputs.tag }} 2>&1
- name: Create PR to increment version
uses: peter-evans/create-pull-request@v7
with:
base: main
commit-message: 'chore(actions): publish ${{ github.event.release.tag_name }} to npm'
committer: GitHub <noreply@github.com>
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
signoff: true
branch: ap-publish-${{ github.event.release.tag_name }}
delete-branch: true
title: 'chore(actions): publish ${{ github.event.release.tag_name }} to npm'
body: |
# Increment Versions
Update the package.json version numbers after publishing to NPM.
assignees: ${{ github.actor }}
reviewers: ${{ github.actor }}
draft: false