Skip to content

Commit 3b6f127

Browse files
authored
Merge branch 'main' into v1.7158.0
2 parents 44a8733 + fd740e6 commit 3b6f127

File tree

4 files changed

+1953
-5327
lines changed

4 files changed

+1953
-5327
lines changed

.github/workflows/deploy-package.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,17 @@ jobs:
2020
persist-credentials: false
2121
token: ${{ secrets.GH_TOKEN }}
2222
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
23+
24+
- name: Configure SSH signing
25+
run: |
26+
mkdir -p ~/.ssh
27+
echo "${{ secrets.SSH_SIGNING_PRIVATE_KEY }}" > ~/.ssh/signing_key
28+
chmod 600 ~/.ssh/signing_key
29+
git config --global gpg.format ssh
30+
git config --global user.signingkey ~/.ssh/signing_key
31+
git config --global commit.gpgsign true
32+
git config --global tag.gpgsign true
33+
2334
- name: Git Identity
2435
run: |
2536
git config --global user.name 'scaleway-bot'

lerna.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77
"conventionalCommits": true,
88
"message": "chore(release): publish",
99
"createRelease": "github",
10-
"loglevel": "verbose"
10+
"loglevel": "verbose",
11+
"signGitCommit": true,
12+
"signGitTag": true
1113
}
1214
},
1315
"$schema": "node_modules/lerna/schemas/lerna-schema.json"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
"turbo": "^2.5.6",
8787
"typedoc": "0.27.6",
8888
"typescript": "5.8.3",
89-
"vite": "6.3.6",
89+
"vite": "6.4.1",
9090
"vitest": "3.1.2",
9191
"eslint-plugin-unused-imports": "^4.2.0",
9292
"eslint-plugin-import": "^2.32.0"

0 commit comments

Comments
 (0)