Skip to content

Commit b0a1668

Browse files
committed
chore: try to fix canary
1 parent c326d8f commit b0a1668

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/canary.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ name: Canary Release
33
on:
44
push:
55
branches: [v10]
6-
workflow_dispatch: # Manual trigger
7-
branches: [v10]
6+
workflow_dispatch:
87

98
permissions:
109
id-token: write # Required for npm OIDC
@@ -38,14 +37,14 @@ jobs:
3837

3938
- name: Set canary versions
4039
run: |
41-
CANARY_VERSION="0.0.0-canary.$(git rev-parse --short HEAD)"
40+
CANARY_VERSION="10.0.0-canary.$(git rev-parse --short HEAD)"
4241
echo "Publishing canary version: $CANARY_VERSION"
4342
cd packages/fiber && npm version $CANARY_VERSION --no-git-tag-version
4443
cd ../eslint-plugin && npm version $CANARY_VERSION --no-git-tag-version
4544
cd ../test-renderer && npm version $CANARY_VERSION --no-git-tag-version
4645
4746
- name: Publish to npm
4847
run: |
49-
pnpm --filter @react-three/fiber publish --tag canary --no-git-checks
50-
pnpm --filter @react-three/eslint-plugin publish --tag canary --no-git-checks
51-
pnpm --filter @react-three/test-renderer publish --tag canary --no-git-checks
48+
pnpm --filter @react-three/fiber publish --tag canary --no-git-checks --provenance
49+
pnpm --filter @react-three/eslint-plugin publish --tag canary --no-git-checks --provenance
50+
pnpm --filter @react-three/test-renderer publish --tag canary --no-git-checks --provenance

0 commit comments

Comments
 (0)