diff --git a/.goreleaser.yml b/.goreleaser.yml index ff5ec8a7be7cd72766e54fd9c12b9095f02f4d37..8a549e8fab94f0a7b3a6f930ee1a8eaad88f0e18 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -1,24 +1,35 @@ +# yaml-language-server: $schema=https://goreleaser.com/static/schema-pro.json +# vim: set ts=2 sw=2 tw=0 fo=jcroql version: 2 -project_name: opencode -before: - hooks: + +project_name: crush + +metadata: + mod_timestamp: "{{ .CommitTimestamp }}" + license: "MIT" + homepage: "https://charm.sh/crush" + description: "A powerful terminal-based AI assistant for developers, providing intelligent coding assistance directly in your terminal." + maintainers: + - "kujtimiihoxha " + builds: - env: - CGO_ENABLED=0 goos: - linux - darwin + - windows goarch: - amd64 - arm64 ldflags: - - -s -w -X github.com/opencode-ai/opencode/internal/version.Version={{.Version}} + - -s -w -X github.com/charmbracelet/crush/internal/version.Version={{.Version}} main: ./main.go archives: - - format: tar.gz + - formats: [tar.gz] name_template: >- - opencode- + crush- {{- if eq .Os "darwin" }}mac- {{- else if eq .Os "windows" }}windows- {{- else if eq .Os "linux" }}linux-{{end}} @@ -28,34 +39,31 @@ archives: {{- if .Arm }}v{{ .Arm }}{{ end }} format_overrides: - goos: windows - format: zip + formats: [zip] + checksum: name_template: "checksums.txt" + snapshot: - name_template: "0.0.0-{{ .Timestamp }}" + version_template: "0.0.0-{{ .Timestamp }}" + aurs: - - name: opencode-ai - homepage: "https://github.com/opencode-ai/opencode" - description: "terminal based agent that can build anything" - maintainers: - - "kujtimiihoxha " - license: "MIT" - private_key: "{{ .Env.AUR_KEY }}" - git_url: "ssh://aur@aur.archlinux.org/opencode-ai-bin.git" + - private_key: "{{ .Env.AUR_KEY }}" + git_url: "ssh://aur@aur.archlinux.org/charmbracelet-bin.git" provides: - - opencode + - crush conflicts: - - opencode + - crush package: |- - install -Dm755 ./opencode "${pkgdir}/usr/bin/opencode" -brews: + install -Dm755 ./crush "${pkgdir}/usr/bin/crush" + +homebrew_casks: - repository: - owner: opencode-ai + owner: charmbracelet name: homebrew-tap + nfpms: - - maintainer: kujtimiihoxha - description: terminal based agent that can build anything - formats: + - formats: - deb - rpm file_name_template: >- diff --git a/scripts/release b/scripts/release deleted file mode 100755 index 19c0888b25f4c9995a7d3c53b1a84e03bb4a3d23..0000000000000000000000000000000000000000 --- a/scripts/release +++ /dev/null @@ -1,43 +0,0 @@ -#!/usr/bin/env bash - -# Parse command line arguments -minor=false -while [ "$#" -gt 0 ]; do - case "$1" in - --minor) minor=true; shift 1;; - *) echo "Unknown parameter: $1"; exit 1;; - esac -done - -git fetch --force --tags - -# Get the latest Git tag -latest_tag=$(git tag --sort=committerdate | grep -E '[0-9]' | tail -1) - -# If there is no tag, exit the script -if [ -z "$latest_tag" ]; then - echo "No tags found" - exit 1 -fi - -echo "Latest tag: $latest_tag" - -# Split the tag into major, minor, and patch numbers -IFS='.' read -ra VERSION <<< "$latest_tag" - -if [ "$minor" = true ]; then - # Increment the minor version and reset patch to 0 - minor_number=${VERSION[1]} - let "minor_number++" - new_version="${VERSION[0]}.$minor_number.0" -else - # Increment the patch version - patch_number=${VERSION[2]} - let "patch_number++" - new_version="${VERSION[0]}.${VERSION[1]}.$patch_number" -fi - -echo "New version: $new_version" - -git tag $new_version -git push --tags