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: releaseNote.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,8 @@
5
5
- N/A
6
6
7
7
## Misc
8
-
- Add deprecation date to add-path and set-env runner commands (#796)
8
+
- Disabled add-path and set-env runner commands (#779)
9
+
- Updated dotnet install scripts (#779)
9
10
10
11
## Windows x64
11
12
We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.
@@ -1098,6 +1067,11 @@ if [ "$no_cdn" = true ]; then
1098
1067
azure_feed="$uncached_feed"
1099
1068
fi
1100
1069
1070
+
say "Note that the intended use of this script is for Continuous Integration (CI) scenarios, where:"
1071
+
say "- The SDK needs to be installed without user interaction and without admin rights."
1072
+
say "- The SDK installation doesn't need to persist across multiple CI runs."
1073
+
say "To set up a development environment or to run apps, use installers rather than this script. Visit https://dotnet.microsoft.com/download to get the installer.\n"
1074
+
1101
1075
check_min_reqs
1102
1076
calculate_vars
1103
1077
script_name=$(basename "$0")
@@ -1119,7 +1093,6 @@ if [ "$dry_run" = true ]; then
say "Binaries of dotnet can be found in $bin_path"
1131
1104
fi
1132
1105
1106
+
say "Note that the script does not resolve dependencies during installation."
1107
+
say "To check the list of dependencies, go to https://docs.microsoft.com/dotnet/core/install, select your operating system and check the \"Dependencies\" section."
publicstaticreadonlystringUnsupportedCommandMessage="The `{0}` command is deprecated and will be disabled on November 16th. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands/";
145
144
publicstaticreadonlystringUnsupportedCommandMessageDisabled="The `{0}` command is disabled. Please upgrade to using Environment Files or opt into unsecure command execution by setting the `ACTIONS_ALLOW_UNSECURE_COMMANDS` environment variable to `true`. For more information see: https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands/";
0 commit comments