Skip to content

Commit

Permalink
Update the github actiton for the blazor projects.
Browse files Browse the repository at this point in the history
  • Loading branch information
inversionhourglass committed Sep 18, 2024
1 parent 6f8d77c commit 75d099f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/publish-prerelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,8 @@ jobs:
run: |
$branchName = "${{ github.ref_name }}"
if ($branchName -eq "pre/wasm") {
$pkgs = @("DependencyInjection.StaticAccessor.Blazor.WebAssembly")
}
if ($branchName -eq "pre/blazor") {
$pkgs = @("DependencyInjection.StaticAccessor.Blazor")
$pkgs = @("DependencyInjection.StaticAccessor.Blazor", "DependencyInjection.StaticAccessor.Blazor.WebAssembly")
}
if ($branchName -eq "pre/hosting") {
Expand Down
6 changes: 1 addition & 5 deletions .github/workflows/publish-release-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,12 +85,8 @@ jobs:
run: |
$tagName = "${{ github.ref_name }}"
if ($tagName -like "wasm-*") {
$pkgs = @("DependencyInjection.StaticAccessor.Blazor.WebAssembly")
}
if ($tagName -like "blazor-*") {
$pkgs = @("DependencyInjection.StaticAccessor.Blazor")
$pkgs = @("DependencyInjection.StaticAccessor.Blazor", "DependencyInjection.StaticAccessor.Blazor.WebAssembly")
}
if ($tagName -like "hosting-*") {
Expand Down

0 comments on commit 75d099f

Please sign in to comment.