File tree 2 files changed +5
-2
lines changed
modules/runners/templates
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ diff -Naur a/bin/Runner.Listener.runtimeconfig.json b/bin/Runner.Listener.runtim
8
8
}
9
9
],
10
10
" configProperties" : {
11
+ " System.Globalization.PredefinedCulturesOnly" : false ,
11
12
- " System.Reflection.Metadata.MetadataUpdater.IsSupported" : false
12
13
+ " System.Reflection.Metadata.MetadataUpdater.IsSupported" : false ,
13
14
+ " System.Globalization.Invariant" : true
@@ -23,6 +24,7 @@ diff -Naur a/bin/Runner.PluginHost.runtimeconfig.json b/bin/Runner.PluginHost.ru
23
24
}
24
25
],
25
26
" configProperties" : {
27
+ " System.Globalization.PredefinedCulturesOnly" : false ,
26
28
- " System.Reflection.Metadata.MetadataUpdater.IsSupported" : false
27
29
+ " System.Reflection.Metadata.MetadataUpdater.IsSupported" : false ,
28
30
+ " System.Globalization.Invariant" : true
@@ -38,6 +40,7 @@ diff -Naur a/bin/Runner.Worker.runtimeconfig.json b/bin/Runner.Worker.runtimecon
38
40
}
39
41
],
40
42
" configProperties" : {
43
+ " System.Globalization.PredefinedCulturesOnly" : false ,
41
44
- " System.Reflection.Metadata.MetadataUpdater.IsSupported" : false
42
45
+ " System.Reflection.Metadata.MetadataUpdater.IsSupported" : false ,
43
46
+ " System.Globalization.Invariant" : true
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ mkdir -p actions-runner && cd actions-runner
18
18
if [[ -n " $RUNNER_TARBALL_URL " ]]; then
19
19
echo " Downloading the GH Action runner from $RUNNER_TARBALL_URL to $file_name "
20
20
curl -o $file_name -L " $RUNNER_TARBALL_URL "
21
- else
21
+ else
22
22
echo " Retrieving TOKEN from AWS API"
23
23
token=$( curl -f -X PUT " http://169.254.169.254/latest/api/token" -H " X-aws-ec2-metadata-token-ttl-seconds: 180" )
24
24
@@ -43,4 +43,4 @@ if [[ "$os_id" =~ ^ubuntu.* ]]; then
43
43
fi
44
44
45
45
echo " Set file ownership of action runner"
46
- chown -R " $user_name " :" $user_name " .
46
+ chown -R " $user_name " :" $user_name " .
You can’t perform that action at this time.
0 commit comments