-
Notifications
You must be signed in to change notification settings - Fork 158
/
Copy pathrelease_next.sh
executable file
·83 lines (61 loc) · 2.46 KB
/
release_next.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#!/bin/bash
# git clone git@github.com:firebase/genkit.git
# cd genkit
# git checkout next
# pnpm i
# pnpm build
# pnpm test:all
# Run from root: scripts/release_next.sh
pnpm login --registry https://wombat-dressing-room.appspot.com
CURRENT=`pwd`
cd genkit-tools/cli
pnpm publish --tag next --publish-branch next --registry https://wombat-dressing-room.appspot.com
cd $CURRENT
cd genkit-tools/common
pnpm publish --tag next --publish-branch next --registry https://wombat-dressing-room.appspot.com
cd $CURRENT
cd genkit-tools/telemetry-server
pnpm publish --tag next --publish-branch next --registry https://wombat-dressing-room.appspot.com
cd $CURRENT
cd js/core
pnpm publish --tag next --publish-branch next --registry https://wombat-dressing-room.appspot.com
cd $CURRENT
cd js/ai
pnpm publish --tag next --publish-branch next --registry https://wombat-dressing-room.appspot.com
cd $CURRENT
cd js/genkit
pnpm publish --tag next --publish-branch next --registry https://wombat-dressing-room.appspot.com
cd $CURRENT
cd js/plugins/dotprompt
pnpm publish --tag next --publish-branch next --registry https://wombat-dressing-room.appspot.com
cd $CURRENT
cd js/plugins/chroma
pnpm publish --tag next --publish-branch next --registry https://wombat-dressing-room.appspot.com
cd $CURRENT
cd js/plugins/dev-local-vectorstore
pnpm publish --tag next --publish-branch next --registry https://wombat-dressing-room.appspot.com
cd $CURRENT
cd js/plugins/firebase
pnpm publish --tag next --publish-branch next --registry https://wombat-dressing-room.appspot.com
cd $CURRENT
cd js/plugins/google-cloud
pnpm publish --tag next --publish-branch next --registry https://wombat-dressing-room.appspot.com
cd $CURRENT
cd js/plugins/googleai
pnpm publish --tag next --publish-branch next --registry https://wombat-dressing-room.appspot.com
cd $CURRENT
cd js/plugins/ollama
pnpm publish --tag next --publish-branch next --registry https://wombat-dressing-room.appspot.com
cd $CURRENT
cd js/plugins/pinecone
pnpm publish --tag next --publish-branch next --registry https://wombat-dressing-room.appspot.com
cd $CURRENT
cd js/plugins/vertexai
pnpm publish --tag next --publish-branch next --registry https://wombat-dressing-room.appspot.com
cd $CURRENT
cd js/plugins/evaluators
pnpm publish --tag next --publish-branch next --registry https://wombat-dressing-room.appspot.com
cd $CURRENT
cd js/plugins/langchain
pnpm publish --tag next --publish-branch next --registry https://wombat-dressing-room.appspot.com
cd $CURRENT