Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/create-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,8 @@ jobs:
# natively reports GITHUB_REF=refs/tags/<tag> / GITHUB_REF_TYPE=tag,
# and the build derives the version straight from the tag.
gh api "repos/$env:GITHUB_REPOSITORY/actions/workflows/ci.yml/dispatches" -f "ref=$env:TAG"

# Wait briefly for the run to appear, then print its URL.
Start-Sleep -Seconds 5
$RunUrl = gh run list --repo $env:GITHUB_REPOSITORY --workflow=ci.yml --branch=$env:TAG --limit=1 --json url --jq '.[0].url'
Write-Host "Dispatched CI run: $RunUrl"
4 changes: 3 additions & 1 deletion .github/workflows/publish-testsigned-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ jobs:
$ErrorActionPreference = 'Stop'

New-Item -ItemType Directory -Path release_assets -Force | Out-Null
Get-ChildItem -Path artifacts -Filter *.nupkg -Recurse | Copy-Item -Destination release_assets
Get-ChildItem -Path artifacts -Filter *.nupkg -Recurse |
Where-Object { $_.FullName -notmatch 'baseref' } |
Copy-Item -Destination release_assets

$Packages = Get-ChildItem -Path release_assets -Filter *.nupkg
Write-Host "NuGet packages found:"
Expand Down
Loading