-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from shabados/ci/add-builds-code-signing
- Loading branch information
Showing
3 changed files
with
82 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: Continuous Deployment | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build-windows: | ||
runs-on: windows-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20 | ||
cache: npm | ||
|
||
- name: Install dependencies | ||
run: npm ci | ||
|
||
- name: Install AzureSignTool | ||
run: dotnet tool install --global AzureSignTool | ||
|
||
- uses: azure/login@v1 | ||
with: | ||
creds: ${{ secrets.TOOLS__AZURE_CREDENTIALS }} | ||
|
||
- name: Set Azure token on environment | ||
run: | | ||
$az_token=$(az account get-access-token --scope https://vault.azure.net/.default --query accessToken --output tsv) | ||
echo "::add-mask::$az_token" | ||
echo "AZURE_KEY_VAULT_ACCESS_TOKEN=$az_token" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append | ||
- name: Build Electron app | ||
run: npm run build:win | ||
env: | ||
AZURE_KEY_VAULT_TIMESTAMP_URL: ${{ secrets.AZURE_KEY_VAULT_TIMESTAMP_URL }} | ||
AZURE_KEY_VAULT_CERTIFICATE_NAME: ${{ secrets.AZURE_KEY_VAULT_CERTIFICATE_NAME }} | ||
AZURE_KEY_VAULT_URL: ${{ secrets.AZURE_KEY_VAULT_URL }} | ||
|
||
- uses: actions/upload-artifact@v3 | ||
with: | ||
path: | | ||
**/dist/*.exe | ||
**/dist/win-unpacked/*.exe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
const { | ||
AZURE_KEY_VAULT_TIMESTAMP_URL, | ||
AZURE_KEY_VAULT_ACCESS_TOKEN, | ||
AZURE_KEY_VAULT_URL, | ||
AZURE_KEY_VAULT_CERTIFICATE_NAME, | ||
} = process.env | ||
|
||
Object.entries({ | ||
AZURE_KEY_VAULT_TIMESTAMP_URL, | ||
AZURE_KEY_VAULT_ACCESS_TOKEN, | ||
AZURE_KEY_VAULT_URL, | ||
AZURE_KEY_VAULT_CERTIFICATE_NAME, | ||
}).forEach(([key, value]) => { | ||
if (!value) throw new Error(`Missing environment variable ${key}`) | ||
}) | ||
|
||
const { execSync } = require('child_process') | ||
|
||
const sign = async ({ path }) => { | ||
execSync( | ||
[ | ||
'AzureSignTool', | ||
'sign', | ||
`-kva ${AZURE_KEY_VAULT_ACCESS_TOKEN}`, | ||
`-kvu ${AZURE_KEY_VAULT_URL}`, | ||
`-kvc ${AZURE_KEY_VAULT_CERTIFICATE_NAME}`, | ||
`-tr ${AZURE_KEY_VAULT_TIMESTAMP_URL}`, | ||
path, | ||
].join(' '), | ||
{ stdio: 'inherit' } | ||
) | ||
} | ||
|
||
exports.default = sign |