Skip to content

Commit 6ffa594

Browse files
factions-user
f
authored andcommitted
do semantic release dry run
GitOrigin-RevId: 56eb8c01cc5fa455140aa231d6343e1a8e294829
1 parent 97ea5e5 commit 6ffa594

File tree

2 files changed

+22
-12
lines changed

2 files changed

+22
-12
lines changed

.github/workflows/packages.react-router-busy.release.yml

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
name: Release
22

33
on:
4-
pull_request:
4+
# pull_request:
55
push:
66
branches:
77
- main
88
paths:
99
# This is fine for merging PR which is a push to main because changesets updates package's changelog and package.json to trigger this
1010
- 'packages/react-router-busy/**'
1111

12+
permissions:
13+
contents: read # for checkout
14+
1215
# Don't run publish multiple times at once
1316
concurrency: ${{ github.workflow }}-${{ github.ref }}
1417

@@ -53,11 +56,10 @@ jobs:
5356
runs-on: ubuntu-latest
5457
# https://github.com/changesets/action/issues/179#issuecomment-1139116421
5558
permissions:
56-
id-token: write
57-
contents: write
58-
packages: write
59-
pull-requests: write
60-
issues: read
59+
contents: write # to be able to publish a GitHub release
60+
issues: write # to be able to comment on released issues
61+
pull-requests: write # to be able to comment on released pull requests
62+
id-token: write # to enable use of OIDC for npm provenance
6163
steps:
6264
- name: Check out code
6365
uses: actions/checkout@v4
@@ -72,12 +74,10 @@ jobs:
7274
# Note we have to toggle Workflow permissions > Allow GitHub Actions to create and approve pull requests in https://github.com/bitofbreeze/mono/settings/actions
7375
# Even with permissions above https://github.com/orgs/community/discussions/27689#discussioncomment-5707424
7476
# Could avoid this with personal access token https://microsoft.github.io/beachball/concepts/ci-integration.html#authentication
75-
- name: Create release pull request or publish to npm
76-
id: changesets
77-
uses: changesets/action@v1
77+
- name: Release
78+
uses: cycjimmy/semantic-release-action@v4
7879
with:
79-
# This expects you to have a script called release which does a build for your packages and calls changeset publish
80-
publish: bun --filter react-router-busy build && bun --filter react-router-busy release
80+
working_directory: ./packages/react-router-busy
8181
env:
8282
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8383
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

packages/react-router-busy/package.json

+11-1
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,15 @@
4444
"semantic-release": "24.1.1",
4545
"typescript": "5.6.2"
4646
},
47-
"dependencies": {}
47+
"dependencies": {},
48+
"release": {
49+
"branches": ["main"],
50+
"plugins": [
51+
"@semantic-release/commit-analyzer",
52+
"@semantic-release/release-notes-generator",
53+
"@semantic-release/npm",
54+
"@semantic-release/github"
55+
],
56+
"dryRun": true
57+
}
4858
}

0 commit comments

Comments
 (0)