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
condition: os = linux AND env(GITHUB_DEPLOY_PRERELEASE) IS false
50
+
condition: "$LINUX_STABLE = true"
47
51
tags: true
48
52
- provider: releases
49
53
skip_cleanup: true
@@ -52,7 +56,7 @@ deploy:
52
56
file: csharp-module.dll
53
57
on:
54
58
repo: FabianTerhorst/coreclr-module
55
-
condition: os = windows AND env(GITHUB_DEPLOY_PRERELEASE) IS false
59
+
condition: "$WINDOWS_STABLE = true"
56
60
tags: true
57
61
- provider: releases
58
62
skip_cleanup: true
@@ -62,7 +66,7 @@ deploy:
62
66
file: libcsharp-module.so
63
67
on:
64
68
repo: FabianTerhorst/coreclr-module
65
-
condition: os = linux AND env(GITHUB_DEPLOY_PRERELEASE) IS true
69
+
condition: "$LINUX_BETA = true"
66
70
tags: true
67
71
- provider: releases
68
72
skip_cleanup: true
@@ -72,35 +76,35 @@ deploy:
72
76
file: csharp-module.dll
73
77
on:
74
78
repo: FabianTerhorst/coreclr-module
75
-
condition: os = windows AND env(GITHUB_DEPLOY_PRERELEASE) IS true
79
+
condition: "$WINDOWS_BETA = true"
76
80
tags: true
77
81
- provider: script
78
82
skip_cleanup: true
79
83
script: cd .. && cd .. && cd .. && cd .. && scs3-win.exe upload .\runtime\build\src\Release\csharp-module.dll coreclr-module/stable/x64_win32/csharp-module.dll
80
84
on:
81
85
repo: FabianTerhorst/coreclr-module
82
-
condition: os = windows AND env(GITHUB_DEPLOY_PRERELEASE) IS false
86
+
condition: "$WINDOWS_STABLE = true"
83
87
tags: true
84
88
- provider: script
85
89
skip_cleanup: true
86
90
script: cd .. && cd .. && cd .. && chmod +x ./scs3-linux && ./scs3-linux upload ./runtime/build/src/libcsharp-module.so coreclr-module/stable/x64_linux/libcsharp-module.so
87
91
on:
88
92
repo: FabianTerhorst/coreclr-module
89
-
condition: os = linux AND env(GITHUB_DEPLOY_PRERELEASE) IS false
93
+
condition: "$LINUX_STABLE = true"
90
94
tags: true
91
95
- provider: script
92
96
skip_cleanup: true
93
97
prerelease: true
94
98
script: cd .. && cd .. && cd .. && cd .. && scs3-win.exe upload .\runtime\build\src\Release\csharp-module.dll coreclr-module/beta/x64_win32/csharp-module.dll
95
99
on:
96
100
repo: FabianTerhorst/coreclr-module
97
-
condition: os = windows AND env(GITHUB_DEPLOY_PRERELEASE) IS true
101
+
condition: "$WINDOWS_BETA = true"
98
102
tags: true
99
103
- provider: script
100
104
skip_cleanup: true
101
105
prerelease: true
102
106
script: cd .. && cd .. && cd .. && chmod +x ./scs3-linux && ./scs3-linux upload ./runtime/build/src/libcsharp-module.so coreclr-module/beta/x64_linux/libcsharp-module.so
103
107
on:
104
108
repo: FabianTerhorst/coreclr-module
105
-
condition: os = linux AND env(GITHUB_DEPLOY_PRERELEASE) IS true
0 commit comments