Remove CatchAll and body ID manipulation since it should no longer be needed #1463
Workflow file for this run
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
name: Release | |
on: | |
push: | |
branches: | |
- master | |
- release-* | |
tags: | |
- '[0-9]+.[0-9]+.[0-9]+' | |
- '[0-9]+.[0-9]+.[0-9]+-*' | |
pull_request: | |
workflow_dispatch: | |
env: | |
DOTNET_NOLOGO: true | |
jobs: | |
release: | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
runs-on: windows-2022 | |
steps: | |
- name: Check for secrets | |
env: | |
SECRETS_AVAILABLE: ${{ secrets.SECRETS_AVAILABLE }} | |
shell: pwsh | |
run: exit $(If ($env:SECRETS_AVAILABLE -eq 'true') { 0 } Else { 1 }) | |
- name: Checkout | |
uses: actions/checkout@v4.1.1 | |
with: | |
fetch-depth: 0 | |
- name: Setup .NET SDK | |
uses: actions/setup-dotnet@v4.0.0 | |
with: | |
dotnet-version: 8.0.x | |
- name: Download RavenDB Server | |
shell: pwsh | |
run: ./tools/download-ravendb-server.ps1 | |
- name: Build | |
run: dotnet build src --configuration Release -graph --property:WindowsSelfContained=true | |
- name: Build ServiceControl Management | |
run: dotnet publish src\ServiceControl.Config\ServiceControl.Config.csproj --no-build --output assets --property:WindowsSelfContained=true | |
- name: Sign NuGet packages | |
uses: Particular/sign-nuget-packages-action@v1.0.0 | |
with: | |
client-id: ${{ secrets.AZURE_KEY_VAULT_CLIENT_ID }} | |
tenant-id: ${{ secrets.AZURE_KEY_VAULT_TENANT_ID }} | |
client-secret: ${{ secrets.AZURE_KEY_VAULT_CLIENT_SECRET }} | |
certificate-name: ${{ secrets.AZURE_KEY_VAULT_CERTIFICATE_NAME }} | |
- name: Create PowerShell module catalog | |
run: New-FileCatalog -Path deploy\PowerShellModules\Particular.ServiceControl.Management -CatalogFilePath deploy\PowerShellModules\Particular.ServiceControl.Management\Particular.ServiceControl.Management.cat -CatalogVersion 2.0 | |
- name: Install AzureSignTool | |
run: dotnet tool install --global azuresigntool | |
- name: Sign ServiceControl Management EXE | |
run: | | |
AzureSignTool sign ` | |
--file-digest sha256 ` | |
--timestamp-rfc3161 http://timestamp.digicert.com ` | |
--azure-key-vault-url https://particularcodesigning.vault.azure.net ` | |
--azure-key-vault-client-id ${{ secrets.AZURE_KEY_VAULT_CLIENT_ID }} ` | |
--azure-key-vault-tenant-id ${{ secrets.AZURE_KEY_VAULT_TENANT_ID }} ` | |
--azure-key-vault-client-secret ${{ secrets.AZURE_KEY_VAULT_CLIENT_SECRET }} ` | |
--azure-key-vault-certificate ${{ secrets.AZURE_KEY_VAULT_CERTIFICATE_NAME }} ` | |
assets\Particular.ServiceControl.exe | |
- name: Rename ServiceControl Management EXE | |
run: Rename-Item -Path assets\Particular.ServiceControl.exe -NewName "Particular.ServiceControl-${{ env.MinVerVersion }}.exe" | |
shell: pwsh | |
- name: Sign PowerShell module | |
run: | | |
AzureSignTool sign ` | |
--file-digest sha256 ` | |
--timestamp-rfc3161 http://timestamp.digicert.com ` | |
--azure-key-vault-url https://particularcodesigning.vault.azure.net ` | |
--azure-key-vault-client-id ${{ secrets.AZURE_KEY_VAULT_CLIENT_ID }} ` | |
--azure-key-vault-tenant-id ${{ secrets.AZURE_KEY_VAULT_TENANT_ID }} ` | |
--azure-key-vault-client-secret ${{ secrets.AZURE_KEY_VAULT_CLIENT_SECRET }} ` | |
--azure-key-vault-certificate ${{ secrets.AZURE_KEY_VAULT_CERTIFICATE_NAME }} ` | |
deploy\PowerShellModules\Particular.ServiceControl.Management\Particular.ServiceControl.Management.cat | |
- name: Zip PowerShell module | |
run: | | |
New-Item assets\PowerShellModules -ItemType Directory | |
Compress-Archive -Path deploy\PowerShellModules\Particular.ServiceControl.Management\* -DestinationPath assets\PowerShellModules\Particular.ServiceControl.Management.zip | |
# - name: Build Docker images | |
# if: ${{ github.event_name == 'push' && github.ref_type == 'tag' }} | |
# run: dotnet build src/ServiceControl.DockerImages --configuration Release | |
# - name: List Docker images | |
# if: ${{ github.event_name == 'push' && github.ref_type == 'tag' }} | |
# shell: pwsh | |
# run: docker images | |
- name: Publish assets | |
uses: actions/upload-artifact@v4.3.1 | |
with: | |
name: assets | |
path: assets/* | |
retention-days: 1 | |
- name: Publish NuGet packages | |
uses: actions/upload-artifact@v4.3.1 | |
with: | |
name: nugets | |
path: nugets/* | |
retention-days: 1 | |
- name: Publish zips | |
uses: actions/upload-artifact@v4.3.1 | |
with: | |
name: zips | |
path: zip/* | |
retention-days: 1 | |
- name : Verify release artifact counts | |
shell: pwsh | |
run: | | |
$assetsCount = (Get-ChildItem -Recurse -File assets).Count | |
$nugetsCount = (Get-ChildItem -Recurse -File nugets).Count | |
$zipCount = (Get-ChildItem -Recurse -File zip).Count | |
$expectedAssetsCount = 2 # SCMU & PowerShell module | |
$expectedNugetsCount = 1 # PlatformSample | |
$expectedZipCount = 5 # ServiceControl, Audit, & Monitoring + Transports & RavenDBServer | |
if ($assetsCount -ne $expectedAssetsCount) | |
{ | |
Write-Host Assets: Expected $expectedAssetsCount but found $assetsCount | |
exit -1 | |
} | |
if ($nugetsCount -ne $expectedNugetsCount) | |
{ | |
Write-Host Nugets: Expected $expectedNugetsCount but found $nugetsCount | |
exit -1 | |
} | |
if ($expectedZipCount -ne $zipCount) | |
{ | |
Write-Host Zips: Expected $expectedZipCount but found $zipCount | |
exit -1 | |
} | |
- name: Prepare ServiceControl metadata | |
if: ${{ github.event_name == 'push' && github.ref_type == 'tag' }} | |
shell: pwsh | |
run: | | |
#List of Docker image names used to control re-tagging during push to production | |
$dockerImageNames = Get-ChildItem -Path dockerfiles -Filter *.dockerfile | | |
Select-Object -Property @{label = 'Name'; expression = {[System.IO.Path]::GetFileNameWithoutExtension($_.FullName)} } | | |
Select-object -ExpandProperty Name | |
$serviceControlMetadata = @{ | |
DockerImageNames = $dockerImageNames | |
} | |
$serviceControlMetadata | ConvertTo-Json | Out-File -Path ServiceControlMetadata.json | |
- name: Deploy | |
if: ${{ github.event_name == 'push' && github.ref_type == 'tag' }} | |
uses: Particular/push-octopus-package-action@v2.0.0 | |
with: | |
octopus-deploy-api-key: ${{ secrets.OCTOPUS_DEPLOY_API_KEY }} | |
additional-metadata-paths: ServiceControlMetadata.json | |
# - name: Login to Docker Hub | |
# if: ${{ github.event_name == 'push' && github.ref_type == 'tag' }} | |
# uses: docker/login-action@v3.0.0 | |
# with: | |
# username: ${{ secrets.DOCKERHUB_USERNAME }} | |
# password: ${{ secrets.DOCKERHUB_TOKEN }} | |
# - name: Push Docker images | |
# if: ${{ github.event_name == 'push' && github.ref_type == 'tag' }} | |
# shell: pwsh | |
# run: | | |
# Get-ChildItem -Path dockerfiles -Filter *.dockerfile | ForEach-Object { | |
# $dockerImageName = $_.Name.SubString(0, $_.Name.Length - ".dockerfile".Length); | |
# | |
# $dockerpushcmd = "docker push particular/" + $dockerImageName +":${{ env.MinVerVersion }}" | |
# echo "Docker Push Command: $dockerpushcmd" | |
# Invoke-Expression $dockerpushcmd.ToLower() | |
# } |