Skip to content

Commit 6bb8c70

Browse files
docs: add quick setup guide for GitHub token
1 parent 0ab594c commit 6bb8c70

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

SETUP_TOKEN.md

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# ⚠️ Wichtig: GitHub Secret einrichten
2+
3+
Damit die automatische Homebrew Formula Aktualisierung funktioniert, muss noch ein GitHub Token erstellt werden:
4+
5+
## Schnell-Anleitung:
6+
7+
### 1. Token erstellen
8+
```
9+
https://github.com/settings/tokens/new
10+
```
11+
12+
- **Name:** `Homebrew Tap Update`
13+
- **Berechtigung:**`repo` (volle Kontrolle)
14+
- Token kopieren!
15+
16+
### 2. Secret hinzufügen
17+
```
18+
https://github.com/BreathCodeFlow/tide/settings/secrets/actions/new
19+
```
20+
21+
- **Name:** `HOMEBREW_TAP_TOKEN`
22+
- **Value:** [Token einfügen]
23+
24+
## Danach funktioniert:
25+
26+
```bash
27+
git tag -a v1.3.0 -m "Release v1.3.0"
28+
git push --tags
29+
```
30+
31+
→ Automatisch:
32+
- ✅ Builds erstellen
33+
- ✅ Release auf GitHub
34+
- ✅ Homebrew Formula aktualisiert
35+
- ✅ SHA256-Checksums berechnet
36+
37+
---
38+
39+
**Vollständige Dokumentation:** [.github/workflows/README.md](.github/workflows/README.md)

0 commit comments

Comments
 (0)