-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
176 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
name: CI | ||
|
||
defaults: | ||
run: | ||
shell: pwsh | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
|
||
pull_request: | ||
branches: [ main ] | ||
|
||
release: | ||
types: [ published ] | ||
|
||
jobs: | ||
Build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Upload module | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: module | ||
path: ./src/ | ||
|
||
Test: | ||
needs: Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Download module | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: module | ||
path: ~/.local/share/powershell/Modules/AnyPackage.Pkgx | ||
|
||
- name: Install pkgx | ||
run: curl -Ssf https://pkgx.sh | sh | ||
|
||
- name: Install AnyPackage module | ||
run: Install-Module AnyPackage -Force -AllowClobber | ||
|
||
- name: Test with Pester | ||
run: | | ||
$ht = Import-PowerShellDataFile PesterSettings.psd1 | ||
$config = New-PesterConfiguration $ht | ||
Invoke-Pester -Configuration $config | ||
Sign: | ||
needs: Test | ||
if: github.event_name == 'release' && github.event.action == 'published' | ||
runs-on: windows-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Import certificate | ||
env: | ||
CERTIFICATE_BASE64: ${{ secrets.CERTIFICATE_BASE64 }} | ||
CERTIFICATE_PASSWORD: ${{ secrets.CERTIFICATE_PASSWORD }} | ||
CERTIFICATE_PASSWORD_KEY_BASE64: ${{ secrets.CERTIFICATE_PASSWORD_KEY_BASE64 }} | ||
run: | | ||
[convert]::FromBase64String($env:CERTIFICATE_BASE64) | Set-Content -Path cert.pfx -AsByteStream | ||
$key = [convert]::FromBase64String($env:CERTIFICATE_PASSWORD_KEY_BASE64) | ||
$password = ConvertTo-SecureString $env:CERTIFICATE_PASSWORD -Key $key | ||
Import-PfxCertificate cert.pfx -Password $password -CertStoreLocation Cert:\CurrentUser\My | ||
- name: Sign files | ||
run: | | ||
$config = Import-PowerShellDataFile SignSettings.psd1 | ||
$config['Certificate'] = Get-ChildItem Cert:\CurrentUser\My -CodeSigningCert | ||
Set-Location .\src | ||
Set-AuthenticodeSignature @config | ||
- name: Create and sign catalog file | ||
run: | | ||
$config = Import-PowerShellDataFile SignSettings.psd1 | ||
$config['FilePath'] = 'AnyPackage.Pkgx.cat' | ||
$config['Certificate'] = Get-ChildItem Cert:\CurrentUser\My -CodeSigningCert | ||
Set-Location .\src | ||
New-FileCatalog $config['FilePath'] -CatalogVersion 2 | ||
Set-AuthenticodeSignature @config | ||
- name: Upload module | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: module-signed | ||
path: ./src/ | ||
|
||
Publish: | ||
needs: Sign | ||
if: github.event_name == 'release' && github.event.action == 'published' | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: Download module | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: module-signed | ||
path: '~/.local/share/powershell/Modules/AnyPackage.Pkgx' | ||
|
||
- name: Install AnyPackage | ||
run: Install-Module AnyPackage -Force -AllowClobber | ||
|
||
- name: Publish Module | ||
env: | ||
NUGET_KEY: ${{ secrets.NUGET_KEY }} | ||
run: Publish-Module -Name AnyPackage.Pkgx -NuGetApiKey $env:NUGET_KEY |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: Lint | ||
|
||
defaults: | ||
run: | ||
shell: pwsh | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
|
||
pull_request: | ||
branches: [ "main" ] | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
psscriptanalzyer: | ||
permissions: | ||
contents: read | ||
security-events: write | ||
name: PSScriptAnalyzer | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Install AnyPackage and ConvertToSARIF | ||
run: Install-Module AnyPackage, ConvertToSARIF -Force -AllowClobber | ||
|
||
- name: Run PSScriptAnalyzer | ||
run: | | ||
Import-Module AnyPackage, ConvertToSARIF | ||
Invoke-ScriptAnalyzer -Path . -Recurse | ConvertTo-SARIF -FilePath results.sarif | ||
- name: Upload SARIF results file | ||
uses: github/codeql-action/upload-sarif@v2 | ||
with: | ||
sarif_file: results.sarif | ||
|
||
markdown: | ||
name: Markdown | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "Checkout repository" | ||
uses: "actions/checkout@v4" | ||
|
||
- name: "Lint markdown" | ||
uses: DavidAnson/markdownlint-cli2-action@v16 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
@{ | ||
Run = @{ | ||
Exit = $true | ||
} | ||
Output = @{ | ||
Verbosity = 'Detailed' | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
@{ | ||
FilePath = @('AnyPackage.Pkgx.psd1', 'AnyPackage.Pkgx.psm1') | ||
TimeStampServer = 'http://timestamp.sectigo.com' | ||
HashAlgorithm = 'SHA256' | ||
} |