@qrafty-ai/opencode-kanban 0.0.6-linux-x64 → 0.0.7-darwin-arm64

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 CHANGED
@@ -107,7 +107,13 @@ Only stable `vX.Y.Z` tags are supported (no alpha/pre-release variants).
107
107
  3. Add the **private key** as a GitHub Actions secret named `AUR_SSH_PRIVATE_KEY`:
108
108
  - Repository → Settings → Secrets and variables → Actions → New repository secret
109
109
  - Name: `AUR_SSH_PRIVATE_KEY`
110
- - Value: contents of `aur_deploy` (the private key file)
110
+ - Value: **base64-encoded** private key GitHub strips trailing newlines from secrets which corrupts PEM files; base64 avoids this:
111
+
112
+ ```bash
113
+ cat aur_deploy | base64 -w0
114
+ ```
115
+
116
+ Paste the single-line output as the secret value.
111
117
 
112
118
  4. Claim or create the `opencode-kanban` package on AUR (first publish does this automatically if the package doesn't exist yet).
113
119
 
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@qrafty-ai/opencode-kanban",
3
- "version": "0.0.6-linux-x64",
3
+ "version": "0.0.7-darwin-arm64",
4
4
  "description": "Terminal kanban board for managing OpenCode tmux sessions",
5
5
  "license": "MIT",
6
6
  "os": [
7
- "linux"
7
+ "darwin"
8
8
  ],
9
9
  "cpu": [
10
- "x64"
10
+ "arm64"
11
11
  ],
12
12
  "files": [
13
13
  "vendor"