Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .github/workflows/deploy-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,17 @@ jobs:
persist-credentials: false
token: ${{ secrets.GH_TOKEN }}
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*

- name: Configure SSH signing
run: |
mkdir -p ~/.ssh
echo "${{ secrets.SSH_SIGNING_PRIVATE_KEY }}" > ~/.ssh/signing_key
chmod 600 ~/.ssh/signing_key
git config --global gpg.format ssh
git config --global user.signingkey ~/.ssh/signing_key
git config --global commit.gpgsign true
git config --global tag.gpgsign true

- name: Git Identity
run: |
git config --global user.name 'scaleway-bot'
Expand Down
4 changes: 3 additions & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
"conventionalCommits": true,
"message": "chore(release): publish",
"createRelease": "github",
"loglevel": "verbose"
"loglevel": "verbose",
"signGitCommit": true,
"signGitTag": true
}
},
"$schema": "node_modules/lerna/schemas/lerna-schema.json"
Expand Down
Loading