File tree 1 file changed +12
-3
lines changed
1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change 52
52
Copy-Item "${{ github.workspace }}/BinaryCache/firebase/external/src/firestore/Firestore/core/include/firebase/firestore/firestore_errors.h" "${{ github.workspace }}/BuildRoot/Library/firebase/usr/include/firebase/firestore/firestore_errors.h"
53
53
Copy-Item "${{ github.workspace }}/BinaryCache/firebase/external/src/firestore/Firestore/core/include/firebase/firestore/geo_point.h" "${{ github.workspace }}/BuildRoot/Library/firebase/usr/include/firebase/firestore/geo_point.h"
54
54
Copy-Item "${{ github.workspace }}/BinaryCache/firebase/external/src/firestore/Firestore/core/include/firebase/firestore/timestamp.h" "${{ github.workspace }}/BuildRoot/Library/firebase/usr/include/firebase/firestore/timestamp.h"
55
- Copy-Item "${{ github.workspace }}/BinaryCache/firebase/external/src/firestore-build/Firestore/core/Release/firestore_nanopb.lib" "${{ github.workspace }}/BuildRoot/Library/firebase/usr/libs/windows/firestore_nanopb.lib"
56
- Copy-Item "${{ github.workspace }}/BinaryCache/firebase/external/src/firestore-build/Firestore/core/Release/firestore_util.lib" "${{ github.workspace }}/BuildRoot/Library/firebase/usr/libs/windows/firestore_util.lib"
57
- Copy-Item "${{ github.workspace }}/BinaryCache/firebase/external/src/firestore-build/Firestore/core/Release/firestore_core.lib" "${{ github.workspace }}/BuildRoot/Library/firebase/usr/libs/windows/firestore_core.lib"
55
+
56
+ Write-Host "Copying .lib files into place..."
57
+ $sourceDirectory = "${{ github.workspace }}/BinaryCache/firebase"
58
+ $destinationDirectory = "${{ github.workspace }}/BuildRoot/Library/firebase/usr/libs/windows"
59
+
60
+ $libFiles = Get-ChildItem -Path $sourceDirectory -File -Recurse -Filter *.lib
61
+
62
+ foreach ($file in $libFiles) {
63
+ $destinationPath = Join-Path -Path $destinationDirectory -ChildPath $file.Name
64
+ Copy-Item -Path $file.FullName -Destination $destinationPath -Force
65
+ Write-Host "Copy operation completed for ${destinationPath}"
66
+ }
58
67
- uses : actions/upload-artifact@v3
59
68
with :
60
69
name : firebase-windows-amd64
You can’t perform that action at this time.
0 commit comments