Skip to content

Action Step Name

H. Joe Lee edited this page Apr 19, 2024 · 1 revision

Valid step names in GitHub Actions can only contain alphanumeric characters (a-z, A-Z, 0-9), hyphens (-) and underscores (_). In other words, you can use letters, numbers, dashes, and underscores to create your step names.

Here's a breakdown of what's allowed and what's not:

Allowed: run-tests, build_image, deploy-app Not allowed: run tests (with space), deploy.sh (dot), specialChar# (special character)

Clone this wiki locally