From 6462527e556b2a7ce4add82d8e7bf43b0a5deeca Mon Sep 17 00:00:00 2001 From: exquo <62397152+exquo@users.noreply.github.com> Date: Mon, 8 Nov 2021 18:14:46 +0000 Subject: [PATCH] Update storing-workflow-data-as-artifacts.md --- .../advanced-guides/storing-workflow-data-as-artifacts.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/actions/advanced-guides/storing-workflow-data-as-artifacts.md b/content/actions/advanced-guides/storing-workflow-data-as-artifacts.md index 263b92e09e..a1e1b56851 100644 --- a/content/actions/advanced-guides/storing-workflow-data-as-artifacts.md +++ b/content/actions/advanced-guides/storing-workflow-data-as-artifacts.md @@ -82,7 +82,7 @@ For example, your repository or a web application might contain SASS and TypeScr This example shows you how to create a workflow for a Node.js project that builds the code in the `src` directory and runs the tests in the `tests` directory. You can assume that running `npm test` produces a code coverage report named `code-coverage.html` stored in the `output/test/` directory. -The workflow uploads the production artifacts in the `dist` directory, but excludes any markdown files. It also and uploads the `code-coverage.html` report as another artifact. +The workflow uploads the production artifacts in the `dist` directory, but excludes any markdown files. It also uploads the `code-coverage.html` report as another artifact. ```yaml{:copy} name: Node CI @@ -161,7 +161,7 @@ You can also download all artifacts in a workflow run by not specifying a name. uses: actions/download-artifact@v2 ``` -If you download all a workflow run's artifacts, a directory for each artifact is created using its name. +If you download all workflow run's artifacts, a directory for each artifact is created using its name. For more information on syntax, see the {% ifversion fpt or ghec %}[actions/download-artifact](https://github.com/actions/download-artifact) action{% else %} `actions/download-artifact` action on {% data variables.product.product_location %}{% endif %}.