We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18d2bcd commit 3f74c64Copy full SHA for 3f74c64
.github/workflows/deploy-package.yml
@@ -15,6 +15,19 @@ jobs:
15
fetch-depth: '0'
16
persist-credentials: false
17
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
18
+
19
+ - name: Setup SSH signing
20
+ run: |
21
+ mkdir -p ~/.ssh
22
+ echo "${{ secrets.SSH_SIGNING_PRIVATE_KEY }}" > ~/.ssh/signing_key
23
+ chmod 600 ~/.ssh/signing_key
24
+ echo "${{ secrets.SSH_SIGNING_PUBLIC_KEY }}" > ~/.ssh/signing_key.pub
25
+ chmod 644 ~/.ssh/signing_key.pub
26
+ git config --global gpg.format ssh
27
+ git config --global user.signingkey ~/.ssh/signing_key.pub
28
+ git config --global commit.gpgsign true
29
+ git config --global tag.gpgsign true
30
31
- name: Git Identity
32
run: |
33
git config --global user.name 'scaleway-bot'
0 commit comments