Skip to content

Commit f0b195f

Browse files
committed
formatting cleanup
1 parent 1cc6bf4 commit f0b195f

File tree

4 files changed

+28
-7
lines changed

4 files changed

+28
-7
lines changed

.github/actions/docker-manifests/action.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@ runs:
3232
-
3333
name: '[Docker Publish Manifests] DockerHub'
3434
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
3639
-
3740
name: Login to GitHub
3841
uses: docker/login-action@v3
@@ -43,4 +46,7 @@ runs:
4346
-
4447
name: '[Docker Publish Manifests] GitHub'
4548
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

.github/actions/docker-publish/action.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,10 @@ runs:
3535
-
3636
name: '[Docker Publish] DockerHub'
3737
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
3942
-
4043
name: Login to GitHub
4144
uses: docker/login-action@v3
@@ -46,4 +49,7 @@ runs:
4649
-
4750
name: '[Docker Publish] GitHub'
4851
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

.github/actions/docker-test/action.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,14 @@ runs:
1717
-
1818
name: '[Docker Build & Test] DockerHub'
1919
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
2124
-
2225
name: '[Docker Build & Test] GitHub'
2326
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

.github/workflows/_artifacts_linux.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,7 @@ jobs:
5050
-
5151
name: '[Test Artifacts]'
5252
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 }}

0 commit comments

Comments
 (0)