Skip to content

Commit

Permalink
Fix failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
ecnepsnai committed Sep 1, 2024
1 parent 0f5e51e commit 397183c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
- uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 #pin v4.4.0
with:
name: certbox_linux
path: package/artifacts/certbox_linux_*.tar.gz
path: src/desktop/package/artifacts/certbox_linux_*.tar.gz
compression-level: 0

build_macos:
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
- uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 #pin v4.4.0
with:
name: certbox_macos
path: package/artifacts/certbox_macOS_*.dmg
path: src/desktop/package/artifacts/certbox_macOS_*.dmg
compression-level: 0

build_windows:
Expand Down Expand Up @@ -94,5 +94,5 @@ jobs:
- uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 #pin v4.4.0
with:
name: certbox_windows
path: package/artifacts/certbox_windows_*.exe
path: src/desktop/package/artifacts/certbox_windows_*.exe
compression-level: 0
2 changes: 2 additions & 0 deletions src/certbox/tls/certificate.go
Original file line number Diff line number Diff line change
Expand Up @@ -563,6 +563,8 @@ func GenerateCertificate(request CertificateRequest, issuer *Certificate) (*Cert

tpl.Issuer = issuer.X509().Subject
tpl.AuthorityKeyId = authorityKeyId[:]
} else {
tpl.IsCA = true
}

certificate := Certificate{
Expand Down

0 comments on commit 397183c

Please sign in to comment.