40
40
41
41
Build :
42
42
needs : [SetupEnvironment]
43
- uses : phoenixcontact/tools /.github/workflows/build-tool.yml@future
43
+ uses : $GITHUB_REPOSITORY /.github/workflows/build-tool.yml@future
44
44
with :
45
45
dotnet_sdk_version : ${{ needs.SetupEnvironment.outputs.dotnet_sdk_version }}
46
46
REPOSITORY_NAME : ${{ needs.SetupEnvironment.outputs.REPOSITORY_NAME }}
@@ -54,20 +54,20 @@ jobs:
54
54
55
55
IntegrationTests :
56
56
needs : [SetupEnvironment, Build]
57
- uses : phoenixcontact/tools /.github/workflows/integrationtest-tool.yml@future
57
+ uses : $GITHUB_REPOSITORY /.github/workflows/integrationtest-tool.yml@future
58
58
with :
59
59
dotnet_sdk_version : ${{ needs.SetupEnvironment.outputs.dotnet_sdk_version }}
60
60
REPOSITORY_NAME : ${{ needs.SetupEnvironment.outputs.REPOSITORY_NAME }}
61
61
62
62
ReportGenerator :
63
63
needs : [SetupEnvironment, UnitTests, IntegrationTests]
64
- uses : phoenixcontact/tools /.github/workflows/reportgenerator-tool.yml@future
64
+ uses : $GITHUB_REPOSITORY /.github/workflows/reportgenerator-tool.yml@future
65
65
with :
66
66
REPOSITORY_NAME : ${{ needs.SetupEnvironment.outputs.REPOSITORY_NAME }}
67
67
68
68
Publish-Test-Coverage :
69
69
needs : [SetupEnvironment, ReportGenerator]
70
- uses : phoenixcontact/tools /.github/workflows/publish-test-coverage-tool.yml@future
70
+ uses : $GITHUB_REPOSITORY /.github/workflows/publish-test-coverage-tool.yml@future
71
71
with :
72
72
REPOSITORY_NAME : ${{ needs.SetupEnvironment.outputs.REPOSITORY_NAME }}
73
73
secrets :
@@ -77,13 +77,13 @@ jobs:
77
77
78
78
Documentation :
79
79
needs : [SetupEnvironment, UnitTests]
80
- uses : phoenixcontact/tools /.github/workflows/documentation-tool.yml@future
80
+ uses : $GITHUB_REPOSITORY /.github/workflows/documentation-tool.yml@future
81
81
with :
82
82
REPOSITORY_NAME : ${{ needs.SetupEnvironment.outputs.REPOSITORY_NAME }}
83
83
84
84
Publish :
85
85
needs : [SetupEnvironment, UnitTests]
86
- uses : phoenixcontact/tools /.github/workflows/publish-tool.yml@future
86
+ uses : $GITHUB_REPOSITORY /.github/workflows/publish-tool.yml@future
87
87
with :
88
88
dotnet_sdk_version : ${{ needs.SetupEnvironment.outputs.dotnet_sdk_version }}
89
89
REPOSITORY_NAME : ${{ needs.SetupEnvironment.outputs.REPOSITORY_NAME }}
0 commit comments