Skip to content

Commit a5bb0a2

Browse files
committed
fix: update next steps message for template repository workflow
1 parent bfac645 commit a5bb0a2

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

setup.py

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -297,20 +297,20 @@ def main() -> int:
297297

298298
print_header("Setup complete")
299299
print("Your project is ready. Next steps:\n")
300-
print("1. Initialize git (if not already done):")
301-
print(" git init")
300+
print("1. Commit and push:")
302301
print(" git add .")
303302
print(' git commit -m "feat: initial project setup"')
303+
print(" git push")
304304
print()
305-
print("2. Create GitHub repository and push:")
306-
print(f" gh repo create {github_username}/{package_name} --public --source=. --push")
307-
print()
308-
print("3. Configure GitHub repository:")
305+
print("2. Configure GitHub repository:")
306+
print(" - Create PyPI token: https://pypi.org/manage/account/token/")
307+
print(f" - Add as secret: https://github.com/{github_username}/{package_name}/settings/secrets/actions/new")
308+
print(" Name: PYPI_TOKEN")
309309
if include_docs:
310-
print(" - Enable GitHub Pages: Settings > Pages > Source: GitHub Actions")
311-
print(" - Add PyPI token: Settings > Secrets > Actions > PYPI_TOKEN")
310+
print(f" - Enable GitHub Pages: https://github.com/{github_username}/{package_name}/settings/pages")
311+
print(" Source: GitHub Actions")
312312
print()
313-
print("4. Start developing:")
313+
print("3. Start developing:")
314314
print(f" - Edit src/{package_underscore}/__init__.py")
315315
print(" - Add tests in tests/")
316316
if include_docs:

0 commit comments

Comments
 (0)