Skip to content

Commit

Permalink
Signing test
Browse files Browse the repository at this point in the history
  • Loading branch information
bayrakmustafa committed Apr 2, 2024
1 parent 99b69f7 commit 2b8ab7d
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 7 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
os: [windows-latest]

steps:
- name: Check out Git repository
Expand All @@ -19,6 +19,7 @@ jobs:
shell: bash
run: |
mkdir -p ${GITHUB_WORKSPACE}/example
mkdir -p ${GITHUB_WORKSPACE}/artifacts
cp "./sample/minimal.exe" "${GITHUB_WORKSPACE}/example/minimal.exe"
- name: Sign Artifact with CodeSignTool
Expand All @@ -38,11 +39,11 @@ jobs:
# ${name}-${version}-setup.${ext}
file_path: ${{ github.workspace }}/example/minimal.exe
# Directory where signed code object(s) will be written.
# output_path: ${{ github.workspace }}/artifacts
output_path: ${{ github.workspace }}/artifacts
# Scan code before sign
malware_block: false
# Overwrite the existing file
override: true
override: false
# Environment Name, For Production 'PROD' or For Staging 'TEST'
environment_name: PROD
# JVM Max Memory
Expand Down
2 changes: 1 addition & 1 deletion .prettierrc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"printWidth": 240,
"printWidth": 230,
"tabWidth": 4,
"useTabs": false,
"semi": true,
Expand Down
6 changes: 5 additions & 1 deletion dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
export const CODESIGNTOOL_PROPERTIES =
'CLIENT_ID=kaXTRACNijSWsFdRKg_KAfD3fqrBlzMbWs6TwWHwAn8\n' + 'OAUTH2_ENDPOINT=https://login.ssl.com/oauth2/token\n' + 'CSC_API_ENDPOINT=https://cs.ssl.com\n' + 'TSA_URL=http://ts.ssl.com\n' + 'TSA_LEGACY_URL=http://ts.ssl.com/legacy';
'CLIENT_ID=kaXTRACNijSWsFdRKg_KAfD3fqrBlzMbWs6TwWHwAn8\n' +
'OAUTH2_ENDPOINT=https://login.ssl.com/oauth2/token\n' +
'CSC_API_ENDPOINT=https://cs.ssl.com\n' +
'TSA_URL=http://ts.ssl.com\n' +
'TSA_LEGACY_URL=http://ts.ssl.com/legacy';

export const CODESIGNTOOL_DEMO_PROPERTIES =
'CLIENT_ID=qOUeZCCzSqgA93acB3LYq6lBNjgZdiOxQc-KayC3UMw\n' +
Expand Down

0 comments on commit 2b8ab7d

Please sign in to comment.