Skip to content

Commit f35bfb2

Browse files
duckdoom5tritao
authored andcommitted
Fix working directory after checkout method update
1 parent 53b1efd commit f35bfb2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/llvm-win.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,20 +41,20 @@ jobs:
4141
- name: Clone LLVM
4242
shell: bash
4343
run: build/build.sh clone_llvm
44-
working-directory: C:\CppSharp
44+
working-directory: $GITHUB_WORKSPACE
4545

4646
- name: Build LLVM
4747
shell: bash
4848
run: build/build.sh build_llvm -platform $PLATFORM -configuration $BUILD_CONFIGURATION
49-
working-directory: C:\CppSharp
49+
working-directory: $GITHUB_WORKSPACE
5050

5151
- name: Package LLVM
5252
shell: bash
5353
run: build/build.sh package_llvm -platform $PLATFORM -configuration $BUILD_CONFIGURATION
54-
working-directory: C:\CppSharp
54+
working-directory: $GITHUB_WORKSPACE
5555

5656
- name: 'Upload Artifact'
5757
uses: actions/upload-artifact@v4
5858
with:
5959
name: llvm-${{ matrix.os }}-${{ matrix.platform }}-${{ matrix.build-cfg }}
60-
path: C:\CppSharp\build\llvm\llvm-*-*.*
60+
path: $GITHUB_WORKSPACE\build\llvm\llvm-*-*.*

0 commit comments

Comments
 (0)