Skip to content

Commit d2c5dab

Browse files
committed
feat: Better nuget actions
1 parent ee7c37e commit d2c5dab

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/nuget-winui.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ on:
22
push:
33
tags:
44
- "[0-9]+.[0-9]+.[0-9]+-winui"
5-
name: Nuget
5+
workflow_dispatch:
6+
name: Nuget (WinUI)
67
jobs:
78
release:
89
name: "Release on Nuget"
@@ -15,7 +16,7 @@ jobs:
1516
with:
1617
dotnet-version: '10.0.x'
1718
- name: "Restore"
18-
run: dotnet restore
19+
run: dotnet restore Nickvision.Desktop.WinUI
1920
- name: "Build"
2021
run: dotnet build Nickvision.Desktop.WinUI -c Release --no-restore
2122
- name: "Pack"

.github/workflows/nuget.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ on:
22
push:
33
tags:
44
- "[0-9]+.[0-9]+.[0-9]+"
5-
name: Nuget
5+
workflow_dispatch:
6+
name: Nuget (Desktop)
67
jobs:
78
release:
89
name: "Release on Nuget"
@@ -15,7 +16,7 @@ jobs:
1516
with:
1617
dotnet-version: '10.0.x'
1718
- name: "Restore"
18-
run: dotnet restore
19+
run: dotnet restore Nickvision.Desktop
1920
- name: "Build"
2021
run: dotnet build Nickvision.Desktop -c Release --no-restore
2122
- name: "Pack"

0 commit comments

Comments
 (0)