Skip to content

Commit

Permalink
Merge branch 'main' into fix-tags
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasNieto authored Sep 16, 2024
2 parents 7ed3494 + c1fe55d commit 2abe68d
Show file tree
Hide file tree
Showing 4 changed files with 176 additions and 0 deletions.
114 changes: 114 additions & 0 deletions .github/workflows/ci.yml
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
49 changes: 49 additions & 0 deletions .github/workflows/lint.yml
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
8 changes: 8 additions & 0 deletions PesterSettings.psd1
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
@{
Run = @{
Exit = $true
}
Output = @{
Verbosity = 'Detailed'
}
}
5 changes: 5 additions & 0 deletions SignSettings.psd1
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'
}

0 comments on commit 2abe68d

Please sign in to comment.