You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Galileo "testnet" - both binaries extracted from galileo-v3.0.4.tar.gz
137
+
git tag 0g-galileo-v3.0.4
138
+
git tag 0g-galileo-geth-v3.0.4
139
+
# Aristotle "mainnet" - both binaries extracted from aristotle-v1.0.4.tar.gz
140
+
git tag 0g-aristotle-v1.0.4
141
+
git tag 0g-aristotle-geth-v1.0.4
142
+
git push origin <tag-name>
143
+
````
144
+
145
+
#### Example: build and push Story images ( building from source )
146
+
147
+
````bash
148
+
# Local build
149
+
go build -o heighliner
150
+
# Story Consensus
151
+
./heighliner build -c story --git-ref v0.11.0
152
+
# Story-Geth Execution Layer
153
+
./heighliner build -c story-geth --git-ref v0.2.0
154
+
````
155
+
156
+
````bash
157
+
# Remote build
158
+
# Story consensus
159
+
git tag story-v0.11.0
160
+
# Story-Geth execution
161
+
git tag story-geth-v0.2.0
162
+
git push origin <tag-name>
163
+
````
164
+
120
165
#### Example: build and push last n releases of all chains
121
166
122
167
This will make a request to each chain's Github repository to fetch all recent releases. Github rate-limits unauthenticated requests to 60 requests per hour. Authenticated requests have either 1000 (personal) or 15000 (enterprise) per hour. To add Github API authentication, set the `GH_USER` and `GH_PAT` environment variables with your Github username and Github Personal Access Token (PAT), respectively.
0 commit comments