From 87af19cc533b3a251a08f6a1af0c8e69ba95239e Mon Sep 17 00:00:00 2001 From: jc-clark Date: Tue, 17 Jan 2023 14:49:37 -0800 Subject: [PATCH] adds missing @ symbol --- .../creating-actions/creating-a-docker-container-action.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/actions/creating-actions/creating-a-docker-container-action.md b/content/actions/creating-actions/creating-a-docker-container-action.md index 4c05df02c7..454d5d1f19 100644 --- a/content/actions/creating-actions/creating-a-docker-container-action.md +++ b/content/actions/creating-actions/creating-a-docker-container-action.md @@ -192,7 +192,7 @@ git push --follow-tags ## Testing out your action in a workflow -Now you're ready to test your action out in a workflow. +Now you're ready to test your action out in a workflow. {% ifversion private-actions %}- When an action is in a private repository, you can control who can access it. For more information, see "[Allowing access to components in a private repository](/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#allowing-access-to-components-in-a-private-repository)."{% else %}- When an action is in a private repository, the action can only be used in workflows in the same repository.{% endif %} {% ifversion ghes or ghec or ghae %}{% ifversion internal-actions %}- When an action is in an internal repository, you can control who can access it. For more information, see "[Allowing access to components in an internal repository](/repositories/managing-your-repositorys-settings-and-features/enabling-features-for-your-repository/managing-github-actions-settings-for-a-repository#allowing-access-to-components-in-an-internal-repository)."{% else %}- When an action is in an internal repository, the action can only be used in workflows in the same repository.{% endif %}{% endif %} @@ -215,7 +215,7 @@ jobs: steps: - name: Hello world action step id: hello - uses: actions/hello-world-docker-action{% ifversion actions-save-state-set-output-envs %}v2{% else %}v1{% endif %} + uses: actions/hello-world-docker-action@{% ifversion actions-save-state-set-output-envs %}v2{% else %}v1{% endif %} with: who-to-greet: 'Mona the Octocat' # Use the output from the `hello` step