Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
singhgss committed Nov 23, 2023
1 parent a865575 commit 7743507
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/sign-scripts-development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ jobs:
shell: pwsh
run: |
Set-PSRepository PSGallery -InstallationPolicy Trusted
Install-Module -Name PKI -Force -AllowClobber
$pfxCertFilePath = Join-Path -Path $PSScriptRoot -ChildPath "CodeSigningCertificate.pfx"
$codeSigningCert = Import-PfxCertificate -FilePath $pfxCertFilePath -CertStoreLocation ./cert/codesingingcert/
$codeSigningCert = Get-PfxCertificate -FilePath $pfxCertFilePath
#$codeSigningCert = Import-PfxCertificate -FilePath $pfxCertFilePath -CertStoreLocation ./cert/codesingingcert/
# remove git dir from checked out repo
Get-ChildItem -Path "." -Filter ".git*" -Force | ForEach-Object {Remove-Item -Path $_.FullName -Recurse -Force}
$scripts = Get-ChildItem -Path . -Include *.ps1,*.psm1,*.psd1 -Recurse -ErrorAction Stop
Expand Down

0 comments on commit 7743507

Please sign in to comment.