File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 2020 persist-credentials : false
2121 token : ${{ secrets.GH_TOKEN }}
2222 - run : git fetch --depth=1 origin +refs/tags/*:refs/tags/*
23+
24+ - name : Import GPG key
25+ run : |
26+ echo "${{ secrets.GPG_PRIVATE_KEY }}" | gpg --batch --import
27+ GPG_KEY_ID=$(gpg --list-secret-keys --keyid-format=long | grep sec | head -n1 | awk '{print $2}' | cut -d'/' -f2)
28+ git config --global user.signingkey "$GPG_KEY_ID"
29+ git config --global commit.gpgsign true
30+ git config --global tag.gpgsign true
31+ env :
32+ GPG_TTY : $(tty)
33+
2334 - name : Git Identity
2435 run : |
2536 git config --global user.name 'scaleway-bot'
Original file line number Diff line number Diff line change 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"
You can’t perform that action at this time.
0 commit comments