Publish Homebrew Formula #46
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Publish Homebrew Formula | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| tag: | |
| description: Release tag (vX.Y.Z) | |
| required: true | |
| push: | |
| tags: | |
| - 'v*' | |
| jobs: | |
| update-formula: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: write | |
| env: | |
| TAG_NAME: ${{ inputs.tag || github.ref_name }} | |
| steps: | |
| - name: Checkout default branch | |
| uses: actions/checkout@v6 | |
| with: | |
| ref: ${{ github.event.repository.default_branch }} | |
| - name: Build Homebrew formula | |
| shell: bash | |
| run: | | |
| set -euo pipefail | |
| VERSION="${TAG_NAME#v}" | |
| PACKAGE_URL="" | |
| for attempt in $(seq 1 30); do | |
| PACKAGE_URL="$(npm view "@involvex/youtube-music-cli@${VERSION}" dist.tarball --silent 2>/dev/null || true)" | |
| if [ -n "${PACKAGE_URL}" ] && curl --fail --location --silent --show-error "${PACKAGE_URL}" --output package.tgz; then | |
| break | |
| fi | |
| echo "NPM tarball not ready yet (attempt ${attempt}/30)." | |
| sleep 20 | |
| done | |
| if [ ! -s package.tgz ] || [ -z "${PACKAGE_URL}" ]; then | |
| echo "Failed to resolve npm tarball for version ${VERSION}." | |
| exit 1 | |
| fi | |
| SHA256="$(sha256sum package.tgz | awk '{print $1}')" | |
| mkdir -p Formula | |
| cat > Formula/youtube-music-cli.rb <<EOF | |
| class YoutubeMusicCli < Formula | |
| desc "Terminal YouTube Music player" | |
| homepage "https://github.com/involvex/youtube-music-cli" | |
| url "${PACKAGE_URL}" | |
| sha256 "${SHA256}" | |
| license "MIT" | |
| depends_on "node" | |
| def install | |
| system "npm", "install", *std_npm_args | |
| end | |
| test do | |
| assert_match "youtube-music-cli", shell_output("#{bin}/youtube-music-cli --help") | |
| end | |
| end | |
| EOF | |
| - name: Commit and push formula update | |
| shell: bash | |
| run: | | |
| set -euo pipefail | |
| if git diff --quiet -- Formula/youtube-music-cli.rb; then | |
| echo "No formula changes detected." | |
| exit 0 | |
| fi | |
| git config user.name "github-actions[bot]" | |
| git config user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
| git add Formula/youtube-music-cli.rb | |
| git commit -m "chore(homebrew): update formula for ${TAG_NAME}" | |
| git push origin "${{ github.event.repository.default_branch }}" |