Skip to content

models: Gemini 3.8 Flash replaces 3.6, correct the Gemini output limits #47

models: Gemini 3.8 Flash replaces 3.6, correct the Gemini output limits

models: Gemini 3.8 Flash replaces 3.6, correct the Gemini output limits #47

Workflow file for this run

name: release
# Tagging v* builds the cross-platform binaries and publishes a GitHub Release.
# The curl|sh installer (memcode.ai/install.sh) downloads from that release.
on:
push:
tags:
- "v*"
permissions:
contents: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version: "1.26"
cache-dependency-path: go.sum
# Never publish a release from a commit whose tests don't pass.
- run: go test -race ./...
- uses: goreleaser/goreleaser-action@v6
with:
version: "~> v2"
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}