elevenlabs-cli 0.1.8

Unofficial CLI for ElevenLabs text-to-speech API
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
# Release workflow - builds and publishes binaries/packages

name: Release

on:
  push:
    tags:
      - 'v*.*.*'
  workflow_dispatch:
    inputs:
      version:
        description: 'Version number (e.g., 0.1.0) - required for manual trigger'
        required: true
        type: string

permissions:
  contents: write
  packages: write

concurrency:
  group: release-${{ github.ref }}
  cancel-in-progress: false

env:
  CARGO_TERM_COLOR: always

jobs:
  build-linux:
    name: Build Linux (${{ matrix.target }})
    runs-on: ${{ matrix.os }}
    strategy:
      fail-fast: false
      matrix:
        include:
          - os: ubuntu-24.04
            target: x86_64-unknown-linux-gnu
          - os: ubuntu-24.04-arm
            target: aarch64-unknown-linux-gnu
    steps:
      - name: Checkout
        uses: actions/checkout@v4

      - name: Install system dependencies
        run: |
          sudo apt-get update
          sudo apt-get install -y libasound2-dev pkg-config

      - name: Install Rust
        uses: dtolnay/rust-toolchain@stable
        with:
          targets: ${{ matrix.target }}

      - name: Cache Rust build artifacts
        uses: Swatinem/rust-cache@v2
        with:
          shared-key: ${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}-${{ hashFiles('rust-toolchain*') }}

      - name: Build release binary
        run: cargo build --release --target ${{ matrix.target }}

      - name: Upload binary
        uses: actions/upload-artifact@v4
        with:
          name: binary-${{ matrix.target }}
          path: target/${{ matrix.target }}/release/elevenlabs-cli
          retention-days: 5

  build:
    name: Build (${{ matrix.target }})
    runs-on: ${{ matrix.os }}
    strategy:
      fail-fast: false
      matrix:
        include:
          - os: macos-14
            target: x86_64-apple-darwin
          - os: macos-latest
            target: aarch64-apple-darwin
          - os: windows-latest
            target: x86_64-pc-windows-msvc
    steps:
      - name: Checkout
        uses: actions/checkout@v4

      - name: Install Rust
        uses: dtolnay/rust-toolchain@stable
        with:
          targets: ${{ matrix.target }}

      - name: Cache Rust build artifacts
        uses: Swatinem/rust-cache@v2
        with:
          shared-key: ${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}-${{ hashFiles('rust-toolchain*') }}

      - name: Build release binary
        run: cargo build --release --target ${{ matrix.target }}

      - name: Upload binary
        uses: actions/upload-artifact@v4
        with:
          name: binary-${{ matrix.target }}
          path: target/${{ matrix.target }}/release/elevenlabs-cli${{ matrix.target == 'x86_64-pc-windows-msvc' && '.exe' || '' }}
          retention-days: 5

  release:
    name: Create Release
    needs:
      - build
      - build-linux
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v4

      - name: Download all binaries
        uses: actions/download-artifact@v4
        with:
          path: binaries
          pattern: binary-*
          merge-multiple: false

      - name: Determine version
        id: version
        run: |
          VERSION_RAW="${{ github.event.inputs.version || github.ref_name }}"
          VERSION="${VERSION_RAW#v}"
          
          if [[ ! "$VERSION" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
            echo "Error: Version '$VERSION' does not match semver format (X.Y.Z)"
            exit 1
          fi
          
          echo "version=${VERSION}" >> "$GITHUB_OUTPUT"

      - name: Prepare release assets
        run: |
          VERSION="${{ steps.version.outputs.version }}"
          mkdir -p release
          for dir in binaries/binary-*; do
            target=$(basename "$dir" | sed 's/binary-//')
            case "$target" in
              x86_64-pc-windows-msvc)
                if [ -f "$dir/elevenlabs-cli.exe" ]; then
                  (cd "$dir" && zip -r "$GITHUB_WORKSPACE/release/elevenlabs-cli-v${VERSION}-${target}.zip" elevenlabs-cli.exe)
                fi
                ;;
              *)
                if [ -f "$dir/elevenlabs-cli" ]; then
                  tmpdir=$(mktemp -d)
                  cp "$dir/elevenlabs-cli" "$tmpdir/elevenlabs-cli"
                  tar -C "$tmpdir" -czf "release/elevenlabs-cli-v${VERSION}-${target}.tar.gz" .
                  rm -rf "$tmpdir"
                fi
                ;;
            esac
          done

          ls -la release

      - name: Create GitHub Release
        uses: softprops/action-gh-release@v2
        with:
          draft: false
          prerelease: false
          generate_release_notes: true
          tag_name: v${{ steps.version.outputs.version }}
          name: v${{ steps.version.outputs.version }}
          files: release/*
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

      - name: Upload release binaries for finalize job
        uses: actions/upload-artifact@v4
        with:
          name: release
          path: release/
          retention-days: 5

  publish-crates:
    name: Publish to crates.io
    needs: release
    runs-on: ubuntu-latest
    continue-on-error: true
    env:
      CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
    steps:
      - name: Checkout
        uses: actions/checkout@v4

      - name: Install system dependencies
        run: |
          sudo apt-get update
          sudo apt-get install -y libasound2-dev pkg-config libssl-dev

      - name: Install Rust
        uses: dtolnay/rust-toolchain@stable

      - name: Cache Rust build artifacts
        uses: Swatinem/rust-cache@v2
        with:
          shared-key: ${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}-${{ hashFiles('rust-toolchain*') }}

      - name: Publish to crates.io
        env:
          CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
        run: |
          if [ -n "$CARGO_REGISTRY_TOKEN" ]; then
            cargo publish --registry crates-io --allow-dirty
          else
            echo "CARGO_REGISTRY_TOKEN not set, skipping crates.io publish"
          fi

  build-deb:
    name: Build Debian Package (${{ matrix.arch }})
    needs: build-linux
    runs-on: ${{ matrix.runner }}
    strategy:
      fail-fast: false
      matrix:
        include:
          - arch: amd64
            runner: ubuntu-latest
            target: x86_64-unknown-linux-gnu
            deb_arch: amd64
          - arch: arm64
            runner: ubuntu-24.04-arm
            target: aarch64-unknown-linux-gnu
            deb_arch: arm64
    steps:
      - name: Checkout
        uses: actions/checkout@v4

      - name: Install Rust
        uses: dtolnay/rust-toolchain@stable
        with:
          targets: ${{ matrix.target }}

      - name: Cache Rust build artifacts
        uses: Swatinem/rust-cache@v2
        with:
          shared-key: ${{ runner.os }}-${{ hashFiles('**/Cargo.lock') }}-${{ hashFiles('rust-toolchain*') }}

      - name: Install cargo-deb
        uses: taiki-e/install-action@v2
        with:
          tool: cargo-deb

      - name: Download release binary
        uses: actions/download-artifact@v4
        with:
          name: binary-${{ matrix.target }}
          path: target/${{ matrix.target }}/release

      - name: Build .deb package
        run: cargo deb --target ${{ matrix.target }} --no-build

      - name: Upload .deb package
        uses: actions/upload-artifact@v4
        with:
          name: elevenlabs-cli.deb-${{ matrix.arch }}
          path: target/${{ matrix.target }}/debian/*_${{ matrix.deb_arch }}.deb

  build-apk:
    name: Build Alpine Package (${{ matrix.arch }})
    runs-on: ${{ matrix.runner }}
    strategy:
      fail-fast: false
      matrix:
        include:
          - arch: amd64
            runner: ubuntu-latest
            target: x86_64-unknown-linux-musl
            apk_arch: x86_64
          - arch: arm64
            runner: ubuntu-24.04-arm
            target: aarch64-unknown-linux-musl
            apk_arch: aarch64
    steps:
      - name: Checkout
        uses: actions/checkout@v4

      - name: Setup Rust cache
        uses: actions/cache@v4
        with:
          path: |
            ~/.cargo/registry
            ~/.cargo/git
            target
          key: ${{ runner.os }}-cargo-musl-${{ matrix.target }}-${{ hashFiles('**/Cargo.lock') }}
          restore-keys: |
            ${{ runner.os }}-cargo-musl-${{ matrix.target }}-

      - name: Build in Alpine container
        run: |
          docker run --rm \
            -v "$PWD:/work" \
            -w /work \
            --platform linux/${{ matrix.arch }} \
            alpine:3.19 \
            sh -c '
              set -e
              apk add --no-cache build-base curl pkgconfig alsa-lib-dev openssl-dev
              
              # Install Rust
              curl --proto "=https" --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain stable
              source $HOME/.cargo/env
              rustup target add ${{ matrix.target }}
              
              # Build with dynamic linking (musl targets default to static, but Alpine libs are dynamic)
              RUSTFLAGS="-C target-feature=-crt-static" cargo build --release --target ${{ matrix.target }}
            '

      - name: Upload Linux musl binary
        uses: actions/upload-artifact@v4
        with:
          name: binary-musl-${{ matrix.target }}
          path: target/${{ matrix.target }}/release/elevenlabs-cli
          retention-days: 5

      - name: Create Alpine package structure
        run: |
          mkdir -p apk-build/bin
          cp target/${{ matrix.target }}/release/elevenlabs-cli apk-build/bin/

      - name: Create APKBUILD
        run: |
          VERSION="${{ github.event.inputs.version || github.ref_name }}"
          VERSION="${VERSION#v}"
          cat > apk-build/APKBUILD << 'EOF'
          pkgname=elevenlabs-cli
          pkgver=VERSION_PLACEHOLDER
          pkgrel=0
          pkgdesc="Unofficial CLI for ElevenLabs text-to-speech API"
          url="https://github.com/hongkongkiwi/elevenlabs-cli"
          arch="${{ matrix.apk_arch }}"
          license="MIT"
          depends="alsa-lib openssl"
          subpackages=""
          source=""
          options="!check"

          build() {
            return 0
          }

          package() {
            mkdir -p "$pkgdir"/usr/bin
            install -m 755 "$startdir"/bin/elevenlabs-cli "$pkgdir"/usr/bin/elevenlabs-cli
          }
          EOF
          sed -i "s/VERSION_PLACEHOLDER/${VERSION}/" apk-build/APKBUILD

      - name: Build .apk package
        run: |
          mkdir -p apk-packages
          docker run --rm \
            -v "$PWD:/work" \
            -w /work/apk-build \
            alpine:3.19 \
            sh -c 'apk add --no-cache alpine-sdk alsa-lib openssl && \
              adduser -D builder && addgroup builder abuild && \
              chown -R builder:builder /work/apk-build /work/apk-packages && \
              su builder -c "export REPODEST=/work/apk-packages PACKAGER= && abuild-keygen -a -n" && \
              cp /home/builder/.abuild/*.rsa.pub /etc/apk/keys/ && \
              su builder -c "export REPODEST=/work/apk-packages PACKAGER= && abuild -r"'

      - name: Upload Alpine package
        uses: actions/upload-artifact@v4
        with:
          name: elevenlabs-cli.apk-${{ matrix.arch }}
          path: apk-packages/**/*.apk

  finalize-release:
    name: Finalize Release
    needs:
      - release
      - build-deb
      - build-apk
      - publish-docker
    runs-on: ubuntu-latest
    continue-on-error: true
    env:
      GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
    steps:
      - name: Download release assets
        uses: actions/download-artifact@v4
        with:
          name: release
          path: release-assets

      - name: List downloaded assets
        run: |
          echo "=== release-assets contents ==="
          find release-assets -type f -exec ls -la {} \;

      - name: Download all packages
        uses: actions/download-artifact@v4
        with:
          path: packages
          pattern: elevenlabs-cli.*
          merge-multiple: false

      - name: Prepare release assets
        run: |
          mkdir -p release-packages

          cp -r release-assets/* release-packages/ 2>/dev/null || true

          for dir in packages/*; do
            if [ -d "$dir" ]; then
              cp -r "$dir"/* release-packages/ 2>/dev/null || true
            fi
          done

          ls -la release-packages/

      - name: Generate SHA256 checksums
        run: |
          cd release-packages
          find . -maxdepth 1 -type f -exec sha256sum {} \; > SHA256SUMS.txt
          cat SHA256SUMS.txt

      - name: Setup GPG for signing
        if: ${{ env.GPG_PRIVATE_KEY != '' }}
        uses: actions/cache@v4
        with:
          path: ~/.gnupg
          key: gpg-key-cache

      - name: Import GPG key
        if: ${{ env.GPG_PRIVATE_KEY != '' }}
        run: |
          echo '${{ secrets.GPG_PRIVATE_KEY }}' | gpg --batch --import --
          gpg --list-secret-keys --keyid-format LONG

      - name: Sign checksums
        if: ${{ env.GPG_PRIVATE_KEY != '' }}
        run: |
          cd release-packages
          gpg --batch --yes --armor --detach-sign SHA256SUMS.txt
          cat SHA256SUMS.txt.asc

      - name: Upload SHA256 checksums
        uses: actions/upload-artifact@v4
        with:
          name: sha256sums
          path: release-packages/SHA256SUMS.txt
          retention-days: 5

      - name: Update GitHub Release
        uses: softprops/action-gh-release@v2
        with:
          draft: false
          prerelease: false
          files: release-packages/*

  virustotal-scan:
    name: VirusTotal Scan
    needs: finalize-release
    runs-on: ubuntu-latest
    env:
      VT_API_KEY: ${{ secrets.VIRUSTOTAL_API_KEY }}
    steps:
      - name: Check for API key
        id: check
        run: |
          if [[ -n "${{ env.VT_API_KEY }}" ]]; then
            echo "has_key=true" >> "$GITHUB_OUTPUT"
          else
            echo "has_key=false" >> "$GITHUB_OUTPUT"
            echo "::warning::VIRUSTOTAL_API_KEY not set - skipping VirusTotal scan"
          fi

      - name: Download release assets
        if: steps.check.outputs.has_key == 'true'
        uses: actions/download-artifact@v4
        with:
          name: release
          path: release-assets

      - name: Download all packages
        if: steps.check.outputs.has_key == 'true'
        uses: actions/download-artifact@v4
        with:
          path: packages
          pattern: elevenlabs-cli.*
          merge-multiple: false

      - name: Prepare binaries for scanning
        if: steps.check.outputs.has_key == 'true'
        run: |
          mkdir -p scan-targets
          
          # Copy main binaries
          for f in release-assets/elevenlabs-cli-*; do
            [ -f "$f" ] && cp "$f" scan-targets/
          done
          
          # Copy deb and apk packages
          for dir in packages/*; do
            if [ -d "$dir" ]; then
              for f in "$dir"/*.deb "$dir"/*.apk; do
                [ -f "$f" ] && cp "$f" scan-targets/
              done
            fi
          done
          
          ls -la scan-targets/

      - name: VirusTotal Scan
        if: steps.check.outputs.has_key == 'true'
        uses: crazy-max/ghaction-virustotal@v4
        with:
          vt_api_key: ${{ secrets.VIRUSTOTAL_API_KEY }}
          files: |
            scan-targets/*
          update_release_body: true
        continue-on-error: true

      - name: Upload scan results
        if: always() && steps.check.outputs.has_key == 'true'
        uses: actions/upload-artifact@v4
        with:
          name: virustotal-results
          path: virustotal-*.json
          retention-days: 30
        continue-on-error: true

  publish-docker:
    name: Publish Docker Image (Multi-Arch)
    needs:
      - build-apk
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v4

      - name: Download Linux musl binaries (amd64)
        uses: actions/download-artifact@v4
        with:
          name: binary-musl-x86_64-unknown-linux-musl
          path: docker-bin/amd64

      - name: Download Linux musl binaries (arm64)
        uses: actions/download-artifact@v4
        with:
          name: binary-musl-aarch64-unknown-linux-musl
          path: docker-bin/arm64

      - name: Prepare Docker binaries
        run: |
          mkdir -p docker-bin
          mv docker-bin/amd64/elevenlabs-cli docker-bin/elevenlabs-cli-amd64
          mv docker-bin/arm64/elevenlabs-cli docker-bin/elevenlabs-cli-arm64
          chmod +x docker-bin/elevenlabs-cli-amd64 docker-bin/elevenlabs-cli-arm64

      - name: Set up Docker Buildx
        uses: docker/setup-buildx-action@v3

      - name: Set up QEMU for multi-arch builds
        uses: docker/setup-qemu-action@v3
        with:
          platforms: amd64,arm64

      - name: Log in to GitHub Container Registry
        uses: docker/login-action@v3
        with:
          registry: ghcr.io
          username: ${{ github.actor }}
          password: ${{ secrets.GITHUB_TOKEN }}

      - name: Extract metadata for Docker
        id: meta
        uses: docker/metadata-action@v5
        with:
          images: ghcr.io/${{ github.repository }}
          tags: |
            type=ref,event=tag
            type=raw,value=latest

      - name: Build and push multi-architecture Docker image
        uses: docker/build-push-action@v6
        with:
          context: .
          push: true
          tags: ${{ steps.meta.outputs.tags }}
          labels: ${{ steps.meta.outputs.labels }}
          platforms: linux/amd64,linux/arm64
          cache-from: type=gha
          cache-to: type=gha,mode=max

  update-homebrew:
    name: Update Homebrew Formula
    needs: finalize-release
    runs-on: ubuntu-latest
    env:
      HOMEBREW_REPO_UPDATE_TOKEN: ${{ secrets.HOMEBREW_REPO_UPDATE_TOKEN }}
    steps:
      - name: Checkout homebrew-elevenlabs-cli
        uses: actions/checkout@v4
        with:
          repository: hongkongkiwi/homebrew-elevenlabs-cli
          token: ${{ secrets.HOMEBREW_REPO_UPDATE_TOKEN }}
          path: homebrew-tap

      - name: Download SHA256 checksums
        uses: actions/download-artifact@v4
        with:
          name: sha256sums
          path: homebrew-tmp

      - name: Extract SHA256 checksums for all platforms
        id: sha256
        run: |
          SHA256_X86_64_DARWIN=$(grep -E 'elevenlabs-cli-.*-x86_64-apple-darwin\.tar\.gz' homebrew-tmp/SHA256SUMS.txt | awk '{print $1}')
          SHA256_AARCH64_DARWIN=$(grep -E 'elevenlabs-cli-.*-aarch64-apple-darwin\.tar\.gz' homebrew-tmp/SHA256SUMS.txt | awk '{print $1}')
          SHA256_X86_64_LINUX=$(grep -E 'elevenlabs-cli-.*-x86_64-unknown-linux-musl\.tar\.gz' homebrew-tmp/SHA256SUMS.txt | awk '{print $1}')
          SHA256_AARCH64_LINUX=$(grep -E 'elevenlabs-cli-.*-aarch64-unknown-linux-musl\.tar\.gz' homebrew-tmp/SHA256SUMS.txt | awk '{print $1}')

          for value in "$SHA256_X86_64_DARWIN" "$SHA256_AARCH64_DARWIN" "$SHA256_X86_64_LINUX" "$SHA256_AARCH64_LINUX"; do
            if [ -z "$value" ]; then
              echo "Missing SHA256 checksum for one or more platforms" >&2
              exit 1
            fi
          done

          {
            echo "sha256_x86_64_darwin=${SHA256_X86_64_DARWIN}"
            echo "sha256_aarch64_darwin=${SHA256_AARCH64_DARWIN}"
            echo "sha256_x86_64_linux=${SHA256_X86_64_LINUX}"
            echo "sha256_aarch64_linux=${SHA256_AARCH64_LINUX}"
          } >> "$GITHUB_OUTPUT"

      - name: Update Homebrew formula
        run: |
          VERSION_RAW='${{ github.event.inputs.version || github.ref_name }}'
          VERSION="${VERSION_RAW#v}"
          SHA256_X86_64_DARWIN="${{ steps.sha256.outputs.sha256_x86_64_darwin }}"
          SHA256_AARCH64_DARWIN="${{ steps.sha256.outputs.sha256_aarch64_darwin }}"
          SHA256_X86_64_LINUX="${{ steps.sha256.outputs.sha256_x86_64_linux }}"
          SHA256_AARCH64_LINUX="${{ steps.sha256.outputs.sha256_aarch64_linux }}"

          cat > homebrew-tap/Formula/elevenlabs-cli.rb << EOF
          class ElevenlabsCli < Formula
            desc "Unofficial CLI for ElevenLabs text-to-speech API"
            homepage "https://github.com/hongkongkiwi/elevenlabs-cli"
            license "MIT"
            version "${VERSION}"

            on_macos do
              on_arm do
                url "https://github.com/hongkongkiwi/elevenlabs-cli/releases/download/v${VERSION}/elevenlabs-cli-v${VERSION}-aarch64-apple-darwin.tar.gz"
                sha256 "${SHA256_AARCH64_DARWIN}"
              end
              on_intel do
                url "https://github.com/hongkongkiwi/elevenlabs-cli/releases/download/v${VERSION}/elevenlabs-cli-v${VERSION}-x86_64-apple-darwin.tar.gz"
                sha256 "${SHA256_X86_64_DARWIN}"
              end
            end

            on_linux do
              on_arm do
                url "https://github.com/hongkongkiwi/elevenlabs-cli/releases/download/v${VERSION}/elevenlabs-cli-v${VERSION}-aarch64-unknown-linux-musl.tar.gz"
                sha256 "${SHA256_AARCH64_LINUX}"
              end
              on_x86_64 do
                url "https://github.com/hongkongkiwi/elevenlabs-cli/releases/download/v${VERSION}/elevenlabs-cli-v${VERSION}-x86_64-unknown-linux-musl.tar.gz"
                sha256 "${SHA256_X86_64_LINUX}"
              end
            end

            def install
              bin.install "elevenlabs-cli"
            end

            test do
              assert_match version.to_s, shell_output("#{bin}/elevenlabs-cli --version").strip
            end
          end
          EOF

          cat homebrew-tap/Formula/elevenlabs-cli.rb

      - name: Commit and push changes
        working-directory: ./homebrew-tap
        run: |
          VERSION_RAW='${{ github.event.inputs.version || github.ref_name }}'
          VERSION="${VERSION_RAW#v}"

          git config user.name "github-actions[bot]"
          git config user.email "github-actions[bot]@users.noreply.github.com"

          git add Formula/elevenlabs-cli.rb README.md
          if git diff --cached --quiet; then
            echo "No changes to commit for homebrew formula"
            exit 0
          fi

          git commit -m "Update elevenlabs-cli to v${VERSION}"
          git push

  build-snap:
    name: Build and Publish Snap
    needs: build-linux
    runs-on: ubuntu-latest
    env:
      SNAP_STORE_LOGIN: ${{ secrets.SNAP_STORE_LOGIN }}
    steps:
      - name: Determine version
        id: version
        run: |
          VERSION_RAW="${{ github.event.inputs.version || github.ref_name }}"
          VERSION="${VERSION_RAW#v}"
          echo "version=${VERSION}" >> "$GITHUB_OUTPUT"

      - name: Checkout
        uses: actions/checkout@v4

      - name: Download glibc binary
        uses: actions/download-artifact@v4
        with:
          name: binary-x86_64-unknown-linux-gnu
          path: snap-src

      - name: Create snap directory structure and snapcraft.yaml
        run: |
          VERSION="${{ steps.version.outputs.version }}"
          mkdir -p snap/snap
          mv snap-src/elevenlabs-cli snap/
          chmod +x snap/elevenlabs-cli

          printf '%s\n' \
            'name: elevenlabs-cli' \
            'base: core22' \
            "version: '${VERSION}'" \
            'title: ElevenLabs CLI' \
            'summary: Unofficial CLI for ElevenLabs text-to-speech API' \
            'description: |' \
            '  ElevenLabs CLI is an unofficial command-line tool for the ElevenLabs' \
            '  text-to-speech and voice AI platform. Supports TTS, voice cloning,' \
            '  and more.' \
            'grade: stable' \
            'confinement: strict' \
            'license: MIT' \
            'contact: https://github.com/hongkongkiwi/elevenlabs-cli/issues' \
            'source-code: https://github.com/hongkongkiwi/elevenlabs-cli' \
            '' \
            'parts:' \
            '  elevenlabs-cli:' \
            '    plugin: dump' \
            '    source: .' \
            '    stage-packages:' \
            '      - libasound2' \
            '    organize:' \
            '      elevenlabs-cli: bin/elevenlabs-cli' \
            '' \
            'apps:' \
            '  elevenlabs-cli:' \
            '    command: bin/elevenlabs-cli' \
            '    plugs:' \
            '      - network' \
            '      - audio-playback' > snap/snap/snapcraft.yaml

          cat snap/snap/snapcraft.yaml

      - name: Build Snap package
        uses: snapcore/action-build@v1
        with:
          path: snap
          snapcraft-channel: stable

      - name: Upload Snap package to release
        uses: actions/upload-artifact@v4
        with:
          name: elevenlabs-cli.snap
          path: snap/*.snap
          retention-days: 5

      - name: Upload Snap to GitHub Release
        uses: softprops/action-gh-release@v2
        with:
          draft: false
          prerelease: false
          files: snap/*.snap
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

      - name: Publish to Snap Store
        if: ${{ env.SNAP_STORE_LOGIN != '' }}
        continue-on-error: true
        uses: snapcore/action-publish@v1
        with:
          snap: snap/*.snap
          release: stable
          store_login: ${{ env.SNAP_STORE_LOGIN }}

  update-scoop:
    name: Update Scoop Bucket
    needs: finalize-release
    runs-on: ubuntu-latest
    env:
      SCOOP_REPO_UPDATE_TOKEN: ${{ secrets.SCOOP_REPO_UPDATE_TOKEN }}
    steps:
      - name: Determine version
        id: version
        run: |
          VERSION_RAW="${{ github.event.inputs.version || github.ref_name }}"
          VERSION="${VERSION_RAW#v}"
          echo "version=${VERSION}" >> "$GITHUB_OUTPUT"

      - name: Checkout scoop-elevenlabs-cli
        uses: actions/checkout@v4
        with:
          repository: hongkongkiwi/scoop-elevenlabs-cli
          token: ${{ secrets.SCOOP_REPO_UPDATE_TOKEN }}
          path: scoop-tap

      - name: Download SHA256 checksums
        uses: actions/download-artifact@v4
        with:
          name: sha256sums
          path: scoop-tmp

      - name: Extract SHA256 for Windows x86_64
        id: sha256
        run: |
          SHA256_X86_64_WINDOWS=$(grep -E 'elevenlabs-cli-.*-x86_64-pc-windows-msvc\.zip' scoop-tmp/SHA256SUMS.txt | awk '{print $1}')

          if [ -z "$SHA256_X86_64_WINDOWS" ]; then
            echo "Missing SHA256 checksum for Windows x86_64" >&2
            exit 1
          fi

          echo "sha256_x86_64_windows=${SHA256_X86_64_WINDOWS}" >> "$GITHUB_OUTPUT"
          echo "SHA256 x86_64-windows: $SHA256_X86_64_WINDOWS"

      - name: Update Scoop manifest
        run: |
          VERSION="${{ steps.version.outputs.version }}"
          SHA256_X86_64_WINDOWS="${{ steps.sha256.outputs.sha256_x86_64_windows }}"

          # Update the manifest version
          sed -i "s/\"version\": \"[0-9]\+\.[0-9]\+\.[0-9]\+\"/\"version\": \"${VERSION}\"/" scoop-tap/elevenlabs-cli.json

          # Update the URL with the correct version
          sed -i "s|https://github.com/hongkongkiwi/elevenlabs-cli/releases/download/v[0-9.]*/elevenlabs-cli-v[0-9.]*-x86_64-pc-windows-msvc.zip|https://github.com/hongkongkiwi/elevenlabs-cli/releases/download/v${VERSION}/elevenlabs-cli-v${VERSION}-x86_64-pc-windows-msvc.zip|g" scoop-tap/elevenlabs-cli.json

          # Update the hash
          sed -i "s/\"hash\": \"[a-f0-9]\+\"/\"hash\": \"${SHA256_X86_64_WINDOWS}\"/" scoop-tap/elevenlabs-cli.json

          cat scoop-tap/elevenlabs-cli.json

      - name: Commit and push changes
        working-directory: ./scoop-tap
        run: |
          VERSION="${{ steps.version.outputs.version }}"

          git config user.name "github-actions[bot]"
          git config user.email "github-actions[bot]@users.noreply.github.com"

          git add elevenlabs-cli.json
          if git diff --cached --quiet; then
            echo "No changes to commit for scoop manifest"
            exit 0
          fi

          git commit -m "Update elevenlabs-cli to v${VERSION}"
          git push

  tag-downstream-repos:
    name: Tag Downstream Repos
    needs: finalize-release
    runs-on: ubuntu-latest
    env:
      SKILL_REPO_UPDATE_TOKEN: ${{ secrets.SKILL_REPO_UPDATE_TOKEN }}
      HOMEBREW_REPO_UPDATE_TOKEN: ${{ secrets.HOMEBREW_REPO_UPDATE_TOKEN }}
      SCOOP_REPO_UPDATE_TOKEN: ${{ secrets.SCOOP_REPO_UPDATE_TOKEN }}
      ACTION_REPO_UPDATE_TOKEN: ${{ secrets.ACTION_REPO_UPDATE_TOKEN }}
    steps:
      - name: Determine version
        id: version
        run: |
          VERSION_RAW="${{ github.event.inputs.version || github.ref_name }}"
          VERSION="${VERSION_RAW#v}"
          echo "version=${VERSION}" >> "$GITHUB_OUTPUT"

      - name: Tag skill repo
        if: ${{ env.SKILL_REPO_UPDATE_TOKEN != '' }}
        uses: actions/checkout@v4
        with:
          repository: hongkongkiwi/skill-elevenlabs-cli
          token: ${{ secrets.SKILL_REPO_UPDATE_TOKEN }}
          path: skill-repo

      - name: Push tag to skill repo
        if: ${{ env.SKILL_REPO_UPDATE_TOKEN != '' }}
        working-directory: ./skill-repo
        run: |
          VERSION="${{ steps.version.outputs.version }}"
          git config user.name "github-actions[bot]"
          git config user.email "github-actions[bot]@users.noreply.github.com"
          git tag "v${VERSION}"
          git push origin "v${VERSION}"
          echo "Tagged skill repo with v${VERSION} - this will trigger ClawHub publish"

      - name: Tag homebrew repo
        if: ${{ env.HOMEBREW_REPO_UPDATE_TOKEN != '' }}
        uses: actions/checkout@v4
        with:
          repository: hongkongkiwi/homebrew-elevenlabs-cli
          token: ${{ secrets.HOMEBREW_REPO_UPDATE_TOKEN }}
          path: homebrew-repo

      - name: Push tag to homebrew repo
        if: ${{ env.HOMEBREW_REPO_UPDATE_TOKEN != '' }}
        working-directory: ./homebrew-repo
        run: |
          VERSION="${{ steps.version.outputs.version }}"
          git config user.name "github-actions[bot]"
          git config user.email "github-actions[bot]@users.noreply.github.com"
          git tag "v${VERSION}"
          git push origin "v${VERSION}"
          echo "Tagged homebrew repo with v${VERSION}"

      - name: Tag scoop repo
        if: ${{ env.SCOOP_REPO_UPDATE_TOKEN != '' }}
        uses: actions/checkout@v4
        with:
          repository: hongkongkiwi/scoop-elevenlabs-cli
          token: ${{ secrets.SCOOP_REPO_UPDATE_TOKEN }}
          path: scoop-repo

      - name: Push tag to scoop repo
        if: ${{ env.SCOOP_REPO_UPDATE_TOKEN != '' }}
        working-directory: ./scoop-repo
        run: |
          VERSION="${{ steps.version.outputs.version }}"
          git config user.name "github-actions[bot]"
          git config user.email "github-actions[bot]@users.noreply.github.com"
          git tag "v${VERSION}"
          git push origin "v${VERSION}"
          echo "Tagged scoop repo with v${VERSION}"

      - name: Tag action repo
        if: ${{ env.ACTION_REPO_UPDATE_TOKEN != '' }}
        uses: actions/checkout@v4
        with:
          repository: hongkongkiwi/action-elevenlabs-cli
          token: ${{ secrets.ACTION_REPO_UPDATE_TOKEN }}
          path: action-repo

      - name: Push tag to action repo
        if: ${{ env.ACTION_REPO_UPDATE_TOKEN != '' }}
        working-directory: ./action-repo
        run: |
          VERSION="${{ steps.version.outputs.version }}"
          git config user.name "github-actions[bot]"
          git config user.email "github-actions[bot]@users.noreply.github.com"
          git tag "v${VERSION}"
          git push origin "v${VERSION}"
          echo "Tagged action repo with v${VERSION} - this will trigger GitHub Action release"