Skip to content

Do not merge: example for cert generation and extension build #18

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dev/build_extension.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,8 +246,8 @@ def _sign_plugin(args):
extension_path,
certificate_path,
certificate_pwd,
"-tsa",
TIMESTAMP_URL,
# "-tsa",
# TIMESTAMP_URL,
]

# execute the build script
Expand Down
20 changes: 10 additions & 10 deletions dev/env.mk
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@

# set this to the target version you want to set this to
TARGET_VERSION=0.0.1
TARGET_VERSION=9.0.0

# set this to the core you are working with. eg:0.18.160
TKCORE_VERSION=0.18.160
# TKCORE_VERSION=0.18.160
# if you want to use tk-core from a non default bundle-cache location,
# uncomment the following line and set your path accordingly.
# TKCORE_FOLDER=
TKCORE_FOLDER=/Users/beelanj/git/tk-core

ZXP_SIGN_TOOL=
ZXP_SIGN_TOOL=/Users/beelanj/bin/ZXPSignCmd
PYTHON_EXE=python

# DO NOT COMMIT THE FOLLOWING LINES TO THE REPO
# set this to your certificate file, that you created / will create
CERTIFICATE_FILE=
CERTIFICATE_FILE=/Users/beelanj/bin/test2.p12
# set this to the password that you chose/want to chose for your certificate file
# the following options are needed, when you want to create a new certificate
CERTIFICATE_PASS=
CERT_COUNTRY=
CERT_STATE=
CERT_ORG=
CERT_CN=
CERTIFICATE_PASS=123456
CERT_COUNTRY=US
CERT_STATE=WA
CERT_ORG=Autodesk
CERT_CN=SGTK

# optional certificate fields (uncomment if desired)
# CERT_LOCALITY:=
Expand Down