@wipcomputer/deploy-public 1.9.15 → 1.9.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +31 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
###### WIP Computer
|
|
2
|
+
|
|
3
|
+
# Private-to-Public Sync
|
|
4
|
+
|
|
5
|
+
Publish safely. Syncs your private working repo to a clean public mirror. Excludes internal `ai/` folders automatically.
|
|
6
|
+
|
|
7
|
+
## What it does
|
|
8
|
+
|
|
9
|
+
- Copies everything except `ai/` and `.git/` to the public repo
|
|
10
|
+
- Creates a PR on the public repo, merges it
|
|
11
|
+
- Syncs GitHub releases from private to public
|
|
12
|
+
- Cleans up deploy branches
|
|
13
|
+
|
|
14
|
+
## Usage
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
bash deploy-public.sh /path/to/private-repo org/public-repo
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Requirements
|
|
21
|
+
|
|
22
|
+
- git
|
|
23
|
+
- gh (GitHub CLI)
|
|
24
|
+
- bash
|
|
25
|
+
|
|
26
|
+
## Interfaces
|
|
27
|
+
|
|
28
|
+
- **CLI**: Shell script
|
|
29
|
+
- **Skill**: SKILL.md for agent instructions
|
|
30
|
+
|
|
31
|
+
## Part of [AI DevOps Toolbox](https://github.com/wipcomputer/wip-ai-devops-toolbox)
|
package/package.json
CHANGED