https://git.reactos.org/?p=reactos.git;a=commitdiff;h=eae3db10ae3d0541a49bd…
commit eae3db10ae3d0541a49bd800f6672d6a467e8255
Author:     Serge Gautherie <reactos-git_serge_171003(a)gautherie.fr>
AuthorDate: Tue Sep 8 04:28:50 2020 +0200
Commit:     Jérôme Gardou <zefklop(a)users.noreply.github.com>
CommitDate: Wed May 19 09:37:07 2021 +0200
    [GITHUB] build.yml: Remove superfluous '${{github.workspace}}'
---
 .github/workflows/build.yml | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 5d7cceac84b..f302a1f048d 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -112,9 +112,9 @@ jobs:
     - name: Configure
       run: cmake -S src -B build -G Ninja
-DCMAKE_TOOLCHAIN_FILE:FILEPATH=toolchain-msvc.cmake -DARCH:STRING=${{matrix.arch}}
-DENABLE_ROSTESTS=1 -DENABLE_ROSAPPS=1
     - name: Build
-      run: cmake --build ${{github.workspace}}\build  -- -k0
+      run: cmake --build build  -- -k0
     - name: Generate ISOs
-      run:  cmake --build ${{github.workspace}}\build --target bootcd --target livecd
+      run: cmake --build build --target bootcd --target livecd
     - name: Upload ISOs
       uses: actions/upload-artifact@v2
       with:
@@ -175,9 +175,9 @@ jobs:
     - name: Configure
       run: cmake -S src -B build -G Ninja
-DCMAKE_TOOLCHAIN_FILE:FILEPATH=toolchain-msvc.cmake -DARCH:STRING=${{matrix.arch}}
-DENABLE_ROSTESTS=1 -DENABLE_ROSAPPS=1 -DUSE_CLANG_CL:BOOL=TRUE
     - name: Build
-      run: cmake --build ${{github.workspace}}\build -- -k0
+      run: cmake --build build -- -k0
     - name: Generate ISOs
-      run:  cmake --build ${{github.workspace}}\build --target bootcd --target livecd
+      run: cmake --build build --target bootcd --target livecd
     - name: Upload ISOs
       uses: actions/upload-artifact@v2
       with: