clean-up release scripts (#86)
This commit is contained in:
8
.github/workflows/release.yml
vendored
8
.github/workflows/release.yml
vendored
@@ -12,9 +12,10 @@ jobs:
|
||||
build:
|
||||
environment: release
|
||||
strategy:
|
||||
# Do it sequentially to avoid a race condition where multiple release drafts
|
||||
# for the same version are created in parallel.
|
||||
max-parallel: 1
|
||||
# Uncomment max-parallel to prevent race condition (where multiple releases are
|
||||
# created concurrently). Typically though, we'll create a release manually ahead of time
|
||||
# which prevents the race.
|
||||
# max-parallel: 1
|
||||
matrix:
|
||||
os:
|
||||
[
|
||||
@@ -47,7 +48,6 @@ jobs:
|
||||
- name: Set variables
|
||||
if: contains(matrix.os.name, 'windows')
|
||||
id: variables
|
||||
# echo "version=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
|
||||
run: |
|
||||
echo "SM_HOST=${{ secrets.SM_HOST }}" >> "$GITHUB_ENV"
|
||||
echo "SM_API_KEY=${{ secrets.SM_API_KEY }}" >> "$GITHUB_ENV"
|
||||
|
||||
@@ -69,16 +69,6 @@ const config: ForgeConfig = {
|
||||
makers: [
|
||||
new MakerSquirrel({
|
||||
signWithParams: `/sha1 ${process.env.SM_CODE_SIGNING_CERT_SHA1_HASH} /tr http://timestamp.digicert.com /td SHA256 /fd SHA256`,
|
||||
|
||||
// signWithParams: `/csp "DigiCert Signing Manager KSP" /kc ${process.env.DIGICERT_KEYPAIR_ALIAS} /f ${process.env.SM_CLIENT_CERT_FILE} /tr http://timestamp.digicert.com /td SHA256 /fd SHA256`,
|
||||
// windowsSign: {
|
||||
|
||||
// certificateFile: process.env.SM_CLIENT_CERT_FILE,
|
||||
// certificatePassword: process.env.SM_CLIENT_CERT_PASSWORD,
|
||||
// signToolPath:
|
||||
// "C:\\Program Files\\DigiCert\\DigiCert Keylocker Tools\\smctl.exe",
|
||||
// signWithParams: `/sha1 ${process.env.SM_CODE_SIGNING_CERT_SHA1_HASH} /tr http://timestamp.digicert.com /td SHA256 /fd SHA256`,
|
||||
// },
|
||||
}),
|
||||
new MakerZIP({}, ["darwin"]),
|
||||
new MakerRpm({}),
|
||||
|
||||
Reference in New Issue
Block a user