Skip to content

Commit

Permalink
Updated CodeSignTool to v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bayrakmustafa committed Mar 11, 2024
1 parent 9f8af0a commit ce84705
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 10 deletions.
8 changes: 5 additions & 3 deletions 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.

4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "esigner-codesign",
"version": "1.0.0",
"version": "1.3.0",
"private": true,
"description": "SSL.com CodeSignTool Action",
"main": "lib/main.js",
Expand Down
6 changes: 4 additions & 2 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@ 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';
'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' +
'OAUTH2_ENDPOINT=https://oauth-sandbox.ssl.com/oauth2/token\n' +
'CSC_API_ENDPOINT=https://cs-try.ssl.com\n' +
'TSA_URL=http://ts.ssl.com';
'TSA_URL=http://ts.ssl.com\n' +
'TSA_LEGACY_URL=http://ts.ssl.com/legacy';
2 changes: 1 addition & 1 deletion src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export const MACOS_JAVA_CONTENT_POSTFIX = 'Contents/Home';
export const UNIX = 'UNIX';
export const MACOS = 'MACOS';
export const WINDOWS = 'WINDOWS';
export const CODESIGNTOOL_VERSION = 'v1.2.7';
export const CODESIGNTOOL_VERSION = 'v1.3.0';
export const CODESIGNTOOL_BASEPATH = `CodeSignTool-${CODESIGNTOOL_VERSION}`;

export const CODESIGNTOOL_WINDOWS_SETUP = `https://github.com/SSLcom/CodeSignTool/releases/download/${CODESIGNTOOL_VERSION}/CodeSignTool-${CODESIGNTOOL_VERSION}-windows.zip`;
Expand Down

0 comments on commit ce84705

Please sign in to comment.