Ci: some fixes (#496)

* Windows_Build: automatic fetch build type for path

* Hydra_Build: automatic fetch build_type for path
This commit is contained in:
Ishan09811
2024-04-20 15:38:57 +05:30
committed by GitHub
parent 466e67a2fd
commit 1af7664efc
2 changed files with 2 additions and 2 deletions

View File

@@ -36,7 +36,7 @@ jobs:
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v2
with: with:
name: Windows core name: Windows core
path: '${{github.workspace}}/build/Release/Alber.dll' path: '${{github.workspace}}/build/${{ env.BUILD_TYPE }}/Alber.dll'
MacOS: MacOS:

View File

@@ -43,4 +43,4 @@ jobs:
uses: actions/upload-artifact@v2 uses: actions/upload-artifact@v2
with: with:
name: Windows executable name: Windows executable
path: './build/Release/Alber.exe' path: './build/${{ env.BUILD_TYPE }}/Alber.exe'