Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
小 白蛋
Headlamp
Commits
136fce07
Commit
136fce07
authored
2 years ago
by
Joaquim Rocha
Browse files
Options
Download
Email Patches
Plain Diff
github: Use a secret as the DriEmail
parent
2a42a0d2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.github/workflows/app-artifacts-win.yml
+1
-0
.github/workflows/app-artifacts-win.yml
app/windows/codesign.js
+1
-1
app/windows/codesign.js
with
2 additions
and
1 deletion
+2
-1
.github/workflows/app-artifacts-win.yml
+
1
-
0
View file @
136fce07
...
...
@@ -63,6 +63,7 @@ jobs:
if ("${{ inputs.signBinaries }}" -eq "true") {
$env:ESRP_PATH="$(Get-Location)\..\Microsoft.EsrpClient.1.2.80\tools\EsrpClient.exe"
$env:HEADLAMP_WINDOWS_CLIENT_ID="${{ secrets.WINDOWS_CLIENT_ID }}"
$env:HEADLAMP_WINDOWS_SIGN_EMAIL="${{ secrets.WINDOWS_SIGN_EMAIL }}"
} else {
echo "Not signing binaries"
}
...
...
This diff is collapsed.
Click to expand it.
app/windows/codesign.js
+
1
-
1
View file @
136fce07
...
...
@@ -5,7 +5,7 @@ const fs = require('fs');
const
SIGN_JSON_TEMPLATE
=
{
Version
:
'
1.0.0
'
,
DriEmail
:
[
'
hello@kinvolk.io
'
],
DriEmail
:
[
`
${
process
.
env
.
HEADLAMP_WINDOWS_SIGN_EMAIL
}
`
],
GroupId
:
null
,
CorrelationVector
:
null
,
SignBatches
:
[],
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help