Files
JerrettDavis 910796ded2 feat: add act testing config, fix gitignore, make workflow production-ready
- Add .actrc with act defaults (Ubuntu runner, reuse, quiet)
- Add .github/act/dry-run.json and push-feat.json for local workflow testing
- Add .actrc.local.example for local overrides (gitignored)
- Add .env.act.example documenting required secrets
- Fix .gitignore: .env.act excluded, .env.act.example allowed
- Replace all bash git commands with Python subprocess (act compatibility)
- Add pip install build wheel for python -m build step
- Use absolute paths for artifact uploads (github.workspace)
- All publish jobs: dry_run + *_SKIP vars as safety gates
2026-04-15 20:28:29 -05:00

16 lines
467 B
Bash

# Example .env file for act local testing.
# Copy this to .env.act (which is gitignored) and fill in test values.
#
# cp .env.act.example .env.act
#
# act automatically reads .env and passes as secrets to workflows.
# DO NOT commit .env — it contains real or test tokens.
# npmjs.org token (use a test token, not a real one)
NPM_TOKEN=test_token_replace_me
# PyPI trusted publisher (not needed for act, but documented)
# PYPI_TRUSTED_PUBLISHER=...
#dry_run=true