From 85d7458b590a4b20537a9ba8b09493ccbe11fd21 Mon Sep 17 00:00:00 2001 From: Visual Studio Extensibility Date: Mon, 1 Jul 2024 17:49:39 +0200 Subject: [PATCH] Removed extra final 's' character at the end of the name of the actions/upload-artifact (#68) --- .github/steps/3-upload-test-reports.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/steps/3-upload-test-reports.md b/.github/steps/3-upload-test-reports.md index 12f2a23..d3802d7 100644 --- a/.github/steps/3-upload-test-reports.md +++ b/.github/steps/3-upload-test-reports.md @@ -10,7 +10,7 @@ _The workflow has finished running! :sparkles:_ So what do we do when we need the work product of one job in another? We can use the built-in [artifact storage](https://docs.github.com/actions/advanced-guides/storing-workflow-data-as-artifacts) to save artifacts created from one job to be used in another job within the same workflow. -To upload artifacts to the artifact storage, we can use an action built by GitHub: [`actions/upload-artifacts`](https://github.com/actions/upload-artifact). +To upload artifacts to the artifact storage, we can use an action built by GitHub: [`actions/upload-artifact`](https://github.com/actions/upload-artifact). ### :keyboard: Activity: Upload test reports