feat(kql): canonical value normalisation for detection rules (2.5.1) #69
This file contains hidden or 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
| name: 'Publish PowerShell Module to PSGallery' | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - '**/*.psd1' | |
| workflow_dispatch: | |
| inputs: | |
| working_directory: | |
| type: string | |
| description: What working directory should be passed to the script | |
| default: "github_workspace" | |
| jobs: | |
| test: | |
| name: 'Lint and Test' | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| shell: pwsh | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run analyzer and tests | |
| run: ./Invoke-Tests.ps1 | |
| run-script: | |
| name: 'Run Script' | |
| needs: test | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| shell: pwsh | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Build | |
| id: run-script | |
| shell: pwsh | |
| run: | | |
| if ("${{ inputs.working_directory }}" -eq "github_workspace") | |
| { | |
| $workingDirectory = "${{ github.workspace }}" | |
| } | |
| else | |
| { | |
| $workingDirectory = "${{ inputs.working_directory }}" | |
| } | |
| .\Publish-ToPSGallery.ps1 ` | |
| -WorkingDirectory $workingDirectory | |
| env: | |
| NUGET_API_KEY: ${{ secrets.nuget_api_key }} |