Skip to content

Commit a5ed79b

Browse files
committed
Add dotnet run task
1 parent baf786d commit a5ed79b

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/build.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818

1919
env:
2020
Solution_Path: Flow.Launcher.Plugin.ClipboardPlus.sln
21+
Project_Path: build\Build.csproj
2122

2223
steps:
2324

@@ -45,11 +46,15 @@ jobs:
4546
- name: Execute unit tests
4647
run: dotnet test ${{ env.Solution_Path }} --configuration Release --no-build
4748

49+
# Run the build task
50+
- name: Build
51+
run: dotnet run --project build/Build.csproj ${{ env.Project_Path }}
52+
4853
# Upload the Build package
4954
- name: Upload Build package
5055
uses: actions/upload-artifact@v4
5156
with:
5257
name: Build Package
5358
path: |
54-
**/Clipboard+*
59+
output/Clipboard+*.zip
5560
compression-level: 0

0 commit comments

Comments
 (0)