File tree Expand file tree Collapse file tree 4 files changed +28
-7
lines changed Expand file tree Collapse file tree 4 files changed +28
-7
lines changed Original file line number Diff line number Diff line change 32
32
-
33
33
name : ' [Docker Publish Manifests] DockerHub'
34
34
shell : pwsh
35
- run : dotnet run/docker.dll --target=DockerManifest --arch=amd64 --arch=arm64 --dotnet_version=${{ inputs.dotnetVersion }} --docker_distro=${{ inputs.dockerDistro }} --docker_registry dockerhub
35
+ run : |
36
+ dotnet run/docker.dll `
37
+ --target=DockerManifest --arch=amd64 --arch=arm64 --dotnet_version=${{ inputs.dotnetVersion }} `
38
+ --docker_distro=${{ inputs.dockerDistro }} --docker_registry dockerhub
36
39
-
37
40
name : Login to GitHub
38
41
uses : docker/login-action@v3
43
46
-
44
47
name : ' [Docker Publish Manifests] GitHub'
45
48
shell : pwsh
46
- run : dotnet run/docker.dll --target=DockerManifest --arch=amd64 --arch=arm64 --dotnet_version=${{ inputs.dotnetVersion }} --docker_distro=${{ inputs.dockerDistro }} --docker_registry github
49
+ run : |
50
+ dotnet run/docker.dll `
51
+ --target=DockerManifest --arch=amd64 --arch=arm64 --dotnet_version=${{ inputs.dotnetVersion }} `
52
+ --docker_distro=${{ inputs.dockerDistro }} --docker_registry github
Original file line number Diff line number Diff line change 35
35
-
36
36
name : ' [Docker Publish] DockerHub'
37
37
shell : pwsh
38
- run : dotnet run/docker.dll --target=DockerPublish --arch=${{ inputs.arch }} --dotnet_version=${{ inputs.dotnetVersion }} --docker_distro=${{ inputs.dockerDistro }} --docker_registry dockerhub --verbosity=diagnostic
38
+ run : |
39
+ dotnet run/docker.dll `
40
+ --target=DockerPublish --arch=${{ inputs.arch }} --dotnet_version=${{ inputs.dotnetVersion }} `
41
+ --docker_distro=${{ inputs.dockerDistro }} --docker_registry dockerhub --verbosity=diagnostic
39
42
-
40
43
name : Login to GitHub
41
44
uses : docker/login-action@v3
46
49
-
47
50
name : ' [Docker Publish] GitHub'
48
51
shell : pwsh
49
- run : dotnet run/docker.dll --target=DockerPublish --arch=${{ inputs.arch }} --dotnet_version=${{ inputs.dotnetVersion }} --docker_distro=${{ inputs.dockerDistro }} --docker_registry github --verbosity=diagnostic
52
+ run : |
53
+ dotnet run/docker.dll `
54
+ --target=DockerPublish --arch=${{ inputs.arch }} --dotnet_version=${{ inputs.dotnetVersion }} `
55
+ --docker_distro=${{ inputs.dockerDistro }} --docker_registry github --verbosity=diagnostic
Original file line number Diff line number Diff line change 17
17
-
18
18
name : ' [Docker Build & Test] DockerHub'
19
19
shell : pwsh
20
- run : dotnet run/docker.dll --target=DockerTest --arch=${{ inputs.arch }} --dotnet_version=${{ inputs.dotnetVersion }} --docker_distro=${{ inputs.dockerDistro }} --docker_registry dockerhub --verbosity=diagnostic
20
+ run : |
21
+ dotnet run/docker.dll --target=DockerTest `
22
+ --arch=${{ inputs.arch }} --dotnet_version=${{ inputs.dotnetVersion }} `
23
+ --docker_distro=${{ inputs.dockerDistro }} --docker_registry dockerhub --verbosity=diagnostic
21
24
-
22
25
name : ' [Docker Build & Test] GitHub'
23
26
shell : pwsh
24
- run : dotnet run/docker.dll --target=DockerTest --arch=${{ inputs.arch }} --dotnet_version=${{ inputs.dotnetVersion }} --docker_distro=${{ inputs.dockerDistro }} --docker_registry github --verbosity=diagnostic
27
+ run : |
28
+ dotnet run/docker.dll --target=DockerTest `
29
+ --arch=${{ inputs.arch }} --dotnet_version=${{ inputs.dotnetVersion }} `
30
+ --docker_distro=${{ inputs.dockerDistro }} --docker_registry github --verbosity=diagnostic
Original file line number Diff line number Diff line change 50
50
-
51
51
name : ' [Test Artifacts]'
52
52
shell : pwsh
53
- run : dotnet run/artifacts.dll --target=ArtifactsTest --arch=${{ inputs.arch }} --dotnet_version=${{ matrix.dotnetVersion }} --docker_distro=${{ matrix.dockerDistro }}
53
+ run : |
54
+ dotnet run/artifacts.dll `
55
+ --target=ArtifactsTest --arch=${{ inputs.arch }} --dotnet_version=${{ matrix.dotnetVersion }} `
56
+ --docker_distro=${{ matrix.dockerDistro }}
You can’t perform that action at this time.
0 commit comments