From 041f9ad1a1517ad514ff651852547aca1e69b4af Mon Sep 17 00:00:00 2001 From: Michael Yang Date: Fri, 25 Aug 2023 11:44:25 -0700 Subject: [PATCH] update README.md --- README.md | 2 ++ docs/development.md | 17 ----------------- 2 files changed, 2 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 2dc1809f..5ee4d103 100644 --- a/README.md +++ b/README.md @@ -126,6 +126,8 @@ Ollama bundles model weights, configuration, and data into a single package, def ## Building +You will also need a C/C++ compiler such as GCC for MacOS and Linux or Mingw-w64 GCC for Windows. + ``` go build . ``` diff --git a/docs/development.md b/docs/development.md index 471d31cb..66b64894 100644 --- a/docs/development.md +++ b/docs/development.md @@ -25,20 +25,3 @@ Now you can run `ollama`: ``` ./ollama ``` - -## Releasing - -To release a new version of Ollama you'll need to set some environment variables: - -- `GITHUB_TOKEN`: your GitHub token -- `APPLE_IDENTITY`: the Apple signing identity (macOS only) -- `APPLE_ID`: your Apple ID -- `APPLE_PASSWORD`: your Apple ID app-specific password -- `APPLE_TEAM_ID`: the Apple team ID for the signing identity -- `TELEMETRY_WRITE_KEY`: segment write key for telemetry - -Then run the publish script with the target version: - -``` -VERSION=0.0.2 ./scripts/publish.sh -```