ソースを参照

Update dotnet-desktop.yml

Marcin Ziąbek 2 年 前
コミット
920e61fc5e
1 ファイル変更3 行追加5 行削除
  1. 3 5
      .github/workflows/dotnet-desktop.yml

+ 3 - 5
.github/workflows/dotnet-desktop.yml

@@ -32,18 +32,16 @@ jobs:
         uses: actions/setup-dotnet@v1
         with:
           dotnet-version: '6.0.x'
-
-      - name: 🛠 Build Solution 🛠
-        shell: bash
-        run: cd Source
-
+          
       - name: 🔄 Restore Nuget Packages 🔄
         shell: bash
         run: dotnet restore
+        working-directory: ./Source
 
       - name: 🛠 Build Solution 🛠
         shell: bash
         run: dotnet build -c Release --no-restore
+        working-directory: ./Source
         
       - name: Upload build artifacts
         uses: actions/upload-artifact@v3