Skip to content

Commit 6c4158f

Browse files
factions-user
authored andcommitted
do dry run again
GitOrigin-RevId: eb577bdd9e3ba97c89cd7601c90acd62cc747d88
1 parent 393a77a commit 6c4158f

File tree

2 files changed

+9
-25
lines changed

2 files changed

+9
-25
lines changed

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

Lines changed: 7 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,14 @@ jobs:
2323
version: latest
2424
- name: Run Biome
2525
run: biome ci .
26-
validate:
26+
release:
2727
needs: [quality]
2828
runs-on: ubuntu-latest
29+
permissions:
30+
contents: write # to be able to publish a GitHub release
31+
issues: write # to be able to comment on released issues
32+
pull-requests: write # to be able to comment on released pull requests
33+
id-token: write # to enable use of OIDC for npm provenance
2934
steps:
3035
- name: Check out code
3136
uses: actions/checkout@v4
@@ -36,7 +41,7 @@ jobs:
3641
with:
3742
bun-version: latest
3843
- name: Install dependencies (`npm ci`)
39-
# Different set of dependencies due to subset of packages causes lockfile changes that cause failure, so we don't copy lockfile over
44+
# Different set of dependencies due to subset of packages causes lockfile changes that cause failure so no --frozen-lockfile
4045
# https://github.com/oven-sh/bun/issues/5792#issuecomment-2325444077
4146
run: bun install
4247
- name: Test
@@ -46,27 +51,6 @@ jobs:
4651
run: bun --filter react-router-busy build
4752
- name: Check exports
4853
run: bun --filter react-router-busy check-exports
49-
release:
50-
needs: [validate]
51-
runs-on: ubuntu-latest
52-
permissions:
53-
contents: write # to be able to publish a GitHub release
54-
issues: write # to be able to comment on released issues
55-
pull-requests: write # to be able to comment on released pull requests
56-
id-token: write # to enable use of OIDC for npm provenance
57-
steps:
58-
- name: Check out code
59-
uses: actions/checkout@v4
60-
with:
61-
fetch-depth: 0
62-
- name: Set up Bun
63-
uses: oven-sh/[email protected]
64-
with:
65-
bun-version: latest
66-
scope: "react-router-busy"
67-
- name: Install dependencies (`npm ci`)
68-
# Different set of dependencies due to subset of packages causes lockfile changes that cause failure, so we don't copy lockfile over
69-
run: bun install
7054
# Note we have to toggle Workflow permissions > Allow GitHub Actions to create and approve pull requests in https://github.com/bitofbreeze/mono/settings/actions
7155
# Even with permissions above https://github.com/orgs/community/discussions/27689#discussioncomment-5707424
7256
# Could avoid this with personal access token https://microsoft.github.io/beachball/concepts/ci-integration.html#authentication

packages/react-router-busy/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "react-router-busy",
33
"//version": "Not used https://semantic-release.gitbook.io/semantic-release/support/faq#why-is-the-package.jsons-version-not-updated-in-my-repository",
44
"version": "0.0.0",
5-
"description": "Drop-in busy state for react-router forms and links",
5+
"description": "Drop-in busy state for react-router/remix forms and links",
66
"keywords": [
77
"react-router",
88
"form",
@@ -59,6 +59,6 @@
5959
"@semantic-release/npm",
6060
"@semantic-release/github"
6161
],
62-
"dryRun": false
62+
"dryRun": true
6363
}
6464
}

0 commit comments

Comments
 (0)