Skip to content

Commit 74bf7bd

Browse files
committed
WIP: testing split step workflow for docs x2
1 parent 13db498 commit 74bf7bd

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/documentation.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,10 @@ jobs:
3939
# upload artifacts
4040
- name: Move dlls and pyd files to single directories
4141
run: |
42-
mkdir $env:GITHUB_WORKSPACE\artifacts
43-
Get-ChildItem -Path $env:GITHUB_WORKSPACE\build\Release -Filter *.pyd -Recurse | Move-Item -Destination $env:GITHUB_WORKSPACE\artifacts_pyds
42+
mkdir $env:GITHUB_WORKSPACE\artifacts_dlls
43+
mkdir $env:GITHUB_WORKSPACE\artifacts_pyds
4444
Get-ChildItem -Path $env:GITHUB_WORKSPACE\build\bin\Release -Filter *.dll -Recurse | Move-Item -Destination $env:GITHUB_WORKSPACE\artifacts_dlls
45+
Get-ChildItem -Path $env:GITHUB_WORKSPACE\build\Release -Filter *.pyd -Recurse | Move-Item -Destination $env:GITHUB_WORKSPACE\artifacts_pyds
4546
shell: pwsh
4647
- name: Upload artifacts - dlls
4748
uses: actions/upload-artifact@v2

0 commit comments

Comments
 (0)