github.com/getgauge/gauge@v1.6.9/build/sign_windows_artifacts.ps1 (about)

     1  # ----------------------------------------------------------------
     2  #   Copyright (c) ThoughtWorks, Inc.
     3  #   Licensed under the Apache License, Version 2.0
     4  #   See LICENSE.txt in the project root for license information.
     5  # ----------------------------------------------------------------
     6  
     7  param (
     8      [switch]$nightly = $false
     9  )
    10  
    11  $nightlyFlag = If ($nightly) {"--nightly"} Else {""}
    12  & go run build/make.go --distro --certFile $env:CERT_FILE --bin-dir bin\windows_amd64 $nightlyFlag
    13  & go run build/make.go --distro --certFile $env:CERT_FILE --bin-dir bin\windows_386 $nightlyFlag