We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent baf786d commit a5ed79bCopy full SHA for a5ed79b
.github/workflows/build.yml
@@ -18,6 +18,7 @@ jobs:
18
19
env:
20
Solution_Path: Flow.Launcher.Plugin.ClipboardPlus.sln
21
+ Project_Path: build\Build.csproj
22
23
steps:
24
@@ -45,11 +46,15 @@ jobs:
45
46
- name: Execute unit tests
47
run: dotnet test ${{ env.Solution_Path }} --configuration Release --no-build
48
49
+ # Run the build task
50
+ - name: Build
51
+ run: dotnet run --project build/Build.csproj ${{ env.Project_Path }}
52
+
53
# Upload the Build package
54
- name: Upload Build package
55
uses: actions/upload-artifact@v4
56
with:
57
name: Build Package
58
path: |
- **/Clipboard+*
59
+ output/Clipboard+*.zip
60
compression-level: 0
0 commit comments