File tree Expand file tree Collapse file tree 3 files changed +39
-2
lines changed
Expand file tree Collapse file tree 3 files changed +39
-2
lines changed Original file line number Diff line number Diff line change 77
88jobs :
99 goreleaser :
10- runs-on : ubuntu-latest
10+ runs-on : ubuntu-20.04
1111 steps :
1212 - name : Checkout
1313 uses : actions/checkout@v2
3333 env :
3434 GITHUB_TOKEN : ${{secrets.GITHUB_TOKEN}}
3535 GORELEASER_CURRENT_TAG : ${{steps.changelog.outputs.tag-name}}
36+ GITHUB_CERT_PASSWORD : ${{secrets.GITHUB_CERT_PASSWORD}}
37+ DESKTOP_CERT_TOKEN : ${{secrets.DESKTOP_CERT_TOKEN}}
3638 - name : Checkout documentation site
3739 uses : actions/checkout@v2
3840 with :
6163 api-write --silent projects/columns/cards/$card/moves -f position=top -F column_id=$DONE_COLUMN
6264 done
6365 echo "moved ${#cards[@]} cards to the Done column"
64-
6566 - name : Install packaging dependencies
6667 run : sudo apt-get install -y rpm reprepro
6768 - name : Set up GPG
Original file line number Diff line number Diff line change @@ -32,6 +32,12 @@ builds:
3232 id : windows
3333 goos : [windows]
3434 goarch : [386, amd64]
35+ hooks :
36+ post :
37+ - cmd : ./script/sign-windows-executable.sh {{ .Path }}
38+ env :
39+ - GITHUB_CERT_PASSWORD={{ .Env.GITHUB_CERT_PASSWORD }}
40+ - DESKTOP_CERT_TOKEN={{ .Env.DESKTOP_CERT_TOKEN }}
3541
3642archives :
3743 - id : nix
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ set -e
3+
4+ EXECUTABLE_PATH=$1
5+
6+ curl \
7+ -H " Authorization: token $DESKTOP_CERT_TOKEN " \
8+ -H " Accept: application/vnd.github.v3.raw" \
9+ --output windows-certificate.pfx \
10+ --silent \
11+ https://api.github.com/repos/desktop/desktop-secrets/contents/windows-certificate.pfx
12+
13+ PROGRAM_NAME=" GitHub CLI"
14+
15+ # Convert private key to the expected format
16+ openssl pkcs12 -in windows-certificate.pfx -nocerts -nodes -out private-key.pem -passin pass:${GITHUB_CERT_PASSWORD}
17+ openssl rsa -in private-key.pem -outform PVK -pvk-none -out private-key.pvk 2> /dev/null # Always writes to STDERR
18+
19+ # Convert certificate chain into the expected format
20+ openssl pkcs12 -in windows-certificate.pfx -nokeys -nodes -out certificate.pem -passin pass:${GITHUB_CERT_PASSWORD}
21+ openssl crl2pkcs7 -nocrl -certfile certificate.pem -outform DER -out certificate.spc
22+
23+ signcode \
24+ -spc certificate.spc \
25+ -v private-key.pvk \
26+ -n $PROGRAM_NAME \
27+ -t http://timestamp.digicert.com \
28+ -a sha256 \
29+ $EXECUTABLE_PATH \
30+ 1> /dev/null # STDOUT a little bit chatty here, with multiple lines
You can’t perform that action at this time.
0 commit comments