Browse Source

Create LocalPackages Directory

BDisp 10 months ago
parent
commit
d3192df5c2
1 changed files with 11 additions and 2 deletions
  1. 11 2
      .github/workflows/dotnet-core.yml

+ 11 - 2
.github/workflows/dotnet-core.yml

@@ -90,8 +90,17 @@ jobs:
         dotnet-version: 8.x
         dotnet-version: 8.x
         dotnet-quality: 'ga'
         dotnet-quality: 'ga'
 
 
-    - name: Pack Releae
-      run: dotnet pack --configuration Release --output ./bin/Release
+    - name: Create LocalPackages Directory
+      run: mkdir -p LocalPackages
+
+    - name: Pack Release
+      run: dotnet pack --configuration Release --output ./LocalPackages
+
+    - name: Restore dependencies
+      run: dotnet restore --source ./LocalPackages
+
+    - name: Build Release
+      run: dotnet build --configuration Release
 
 
 
 
     # Note: this step is currently not writing to the gist for some reason
     # Note: this step is currently not writing to the gist for some reason