5. Push To GitHub
In order for Validators to see your chain source code, you will need to store it in a public repo with the exact same repo name passed to the feather dev scaffold command.
Create repository​
If you have GitHub CLI installed, run the following to create the repo:
# Login if not already done sogh auth login# Create the repogh repo create <repo_name> --public
Alternatively, you may also use the GitHub website.
Push to the created repository​
The following commands might differ depending on whether the remote was already set or not.
# Commit all file changesgit add . && git commit -m "..."# Push to the remotegit push