Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Commit

Permalink
Fix file path in CMake configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
langningchen committed Dec 23, 2023
1 parent 38fad3f commit 0f6ae16
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/cmake-single-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
run: cmake -B ${{github.workspace}}\build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}
- name: Build
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}
run: cmake --build ${{github.workspace}}\build --config ${{env.BUILD_TYPE}}
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: build
path: ${{github.workspace}}/build/MultiRename.exe
path: ${{github.workspace}}\build\MultiRename.exe

0 comments on commit 0f6ae16

Please sign in to comment.