Skip to content

Commit 1ad2a4c

Browse files
06180618
andauthored
fix(github): log metric action "can't find" issue (#2321)
Co-authored-by: 0618 <[email protected]>
1 parent d0d01bf commit 1ad2a4c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/publish-latest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ jobs:
9595
if: ${{ failure() }}
9696
steps:
9797
- name: Log failure data point to metric PublishNPMFailure
98-
uses: ./.github/actions/log-metric
98+
uses: aws-amplify/amplify-ui/.github/actions/log-metric
9999
with:
100100
metric-name: PublishNPMFailure
101101
value: 1
@@ -109,7 +109,7 @@ jobs:
109109
if: ${{ success() }}
110110
steps:
111111
- name: Log success data point to metric PublishNPMFailure
112-
uses: ./.github/actions/log-metric
112+
uses: aws-amplify/amplify-ui/.github/actions/log-metric
113113
with:
114114
metric-name: PublishNPMFailure
115115
value: 0

.github/workflows/run-and-test-builds.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
if: ${{ failure() }}
104104
steps:
105105
- name: Log failure data point to metric RunTimeTestsFailure
106-
uses: ./.github/actions/log-metric
106+
uses: aws-amplify/amplify-ui/.github/actions/log-metric
107107
with:
108108
metric-name: RunTimeTestsFailure
109109
value: 1
@@ -117,7 +117,7 @@ jobs:
117117
if: ${{ success() }}
118118
steps:
119119
- name: Log success data point to metric RunTimeTestsFailure
120-
uses: ./.github/actions/log-metric
120+
uses: aws-amplify/amplify-ui/.github/actions/log-metric
121121
with:
122122
metric-name: RunTimeTestsFailure
123123
value: 0

.github/workflows/test-deploy-main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ jobs:
175175
if: ${{ failure() }}
176176
steps:
177177
- name: Log failure data point to metric PublishNextFailure
178-
uses: ./.github/actions/log-metric
178+
uses: aws-amplify/amplify-ui/.github/actions/log-metric
179179
with:
180180
metric-name: PublishNextFailure
181181
value: 1
@@ -189,7 +189,7 @@ jobs:
189189
if: ${{ success() }}
190190
steps:
191191
- name: Log success data point to metric PublishNextFailure
192-
uses: ./.github/actions/log-metric
192+
uses: aws-amplify/amplify-ui/.github/actions/log-metric
193193
with:
194194
metric-name: PublishNextFailure
195195
value: 0

0 commit comments

Comments
 (0)