You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .travis.yml
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -77,30 +77,30 @@ deploy:
77
77
tags: true
78
78
- provider: script
79
79
skip_cleanup: true
80
-
script: cd .. && cd .. && cd .. && cd .. && cdn-win.exe .\runtime\build\src\Release\csharp-module.dll coreclr-module/stable/x64_win32/csharp-module.dll "${TRAVIS_BUILD_NUMBER}"
80
+
script: cd .. && cd .. && cd .. && cd .. && mkdir upload && move .\runtime\build\src\Release\csharp-module.dll .\upload && cd upload && cdn-win.exe . coreclr-module/stable/x64_win32/csharp-module.dll "${TRAVIS_BUILD_NUMBER}"
81
81
on:
82
82
repo: FabianTerhorst/coreclr-module
83
83
condition: "$WINDOWS_STABLE = true"
84
84
tags: true
85
85
- provider: script
86
86
skip_cleanup: true
87
-
script: cd .. && cd .. && cd .. && chmod +x ./cdn-linux && ./cdn-linux ./runtime/build/src/libcsharp-module.so coreclr-module/stable/x64_linux/libcsharp-module.so "${TRAVIS_BUILD_NUMBER}"
87
+
script: cd .. && cd .. && cd .. && chmod +x ./cdn-linux && mkdir upload && mv ./runtime/build/src/libcsharp-module.so ./upload/libcsharp-module.so && cd upload && ./cdn-linux . coreclr-module/stable/x64_linux/libcsharp-module.so "${TRAVIS_BUILD_NUMBER}"
88
88
on:
89
89
repo: FabianTerhorst/coreclr-module
90
90
condition: "$LINUX_STABLE = true"
91
91
tags: true
92
92
- provider: script
93
93
skip_cleanup: true
94
94
prerelease: true
95
-
script: cd .. && cd .. && cd .. && cd .. && cdn-win.exe .\runtime\build\src\Release\csharp-module.dll coreclr-module/beta/x64_win32/csharp-module.dll "${TRAVIS_BUILD_NUMBER}"
95
+
script: cd .. && cd .. && cd .. && cd .. && mkdir upload && move .\runtime\build\src\Release\csharp-module.dll .\upload && cd upload && cdn-win.exe . coreclr-module/beta/x64_win32/csharp-module.dll "${TRAVIS_BUILD_NUMBER}"
96
96
on:
97
97
repo: FabianTerhorst/coreclr-module
98
98
condition: "$WINDOWS_BETA = true"
99
99
tags: true
100
100
- provider: script
101
101
skip_cleanup: true
102
102
prerelease: true
103
-
script: cd .. && cd .. && cd .. && chmod +x ./cdn-linux && ./cdn-linux ./runtime/build/src/libcsharp-module.so coreclr-module/beta/x64_linux/libcsharp-module.so "${TRAVIS_BUILD_NUMBER}"
103
+
script: cd .. && cd .. && cd .. && chmod +x ./cdn-linux && mkdir upload && mv ./runtime/build/src/libcsharp-module.so ./upload/libcsharp-module.so && cd upload && ./cdn-linux . coreclr-module/beta/x64_linux/libcsharp-module.so "${TRAVIS_BUILD_NUMBER}"
0 commit comments