chore: rename module from torrentclaw-cli to unarr

- Rename Go module path github.com/torrentclaw/torrentclaw-cli → github.com/torrentclaw/unarr
- Update all imports, ldflags, scripts, docs, and Docker config
- Add GitHub Actions release workflow (goreleaser on tag push)
This commit is contained in:
Deivid Soto 2026-03-30 13:06:07 +02:00
parent 9cc806d11f
commit 5a7449b9e6
58 changed files with 166 additions and 141 deletions

View file

@ -1,5 +1,5 @@
blank_issues_enabled: false
contact_links:
- name: Questions & Discussion
url: https://github.com/torrentclaw/torrentclaw-cli/discussions
url: https://github.com/torrentclaw/unarr/discussions
about: Ask questions or start a discussion

View file

@ -10,30 +10,20 @@ permissions:
jobs:
release:
name: GoReleaser
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Checkout go-client (local replace dependency)
run: git clone --depth 1 https://github.com/torrentclaw/go-client "$GITHUB_WORKSPACE/../go-client"
- name: Set up Go
uses: actions/setup-go@v6
- uses: actions/setup-go@v5
with:
go-version: "1.25"
go-version-file: go.mod
- name: Install UPX
uses: crazy-max/ghaction-upx@v4
- uses: goreleaser/goreleaser-action@v6
with:
install-only: true
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v7
with:
version: latest
version: "~> v2"
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}