summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDax Raad <[email protected]>2026-01-30 10:02:05 -0500
committerDax Raad <[email protected]>2026-01-30 10:02:05 -0500
commita530c1b5b6d56f2dba9edaf8458e8029d5e57f2f (patch)
treef163e11a1b295e14cf1f478a26b51d73a217808d
parent601744eacd649adc969bb4f978e081ede399ec70 (diff)
downloadopencode-a530c1b5b6d56f2dba9edaf8458e8029d5e57f2f.tar.gz
opencode-a530c1b5b6d56f2dba9edaf8458e8029d5e57f2f.zip
ci
-rw-r--r--.github/workflows/test-homebrew-clone.yml48
1 files changed, 0 insertions, 48 deletions
diff --git a/.github/workflows/test-homebrew-clone.yml b/.github/workflows/test-homebrew-clone.yml
deleted file mode 100644
index bf61cbc5f..000000000
--- a/.github/workflows/test-homebrew-clone.yml
+++ /dev/null
@@ -1,48 +0,0 @@
-name: test-homebrew-clone
-
-on:
- push:
- branches:
- - dev
- workflow_dispatch: {}
-
-permissions:
- contents: read
-
-jobs:
- clone:
- runs-on: blacksmith-4vcpu-ubuntu-2404
- steps:
- - uses: actions/checkout@v3
-
- - name: Setup git committer
- id: committer
- uses: ./.github/actions/setup-git-committer
- with:
- opencode-app-id: ${{ vars.OPENCODE_APP_ID }}
- opencode-app-secret: ${{ secrets.OPENCODE_APP_SECRET }}
-
- - name: Verify token present
- run: |
- if [ -z "${GITHUB_TOKEN}" ]; then
- echo "GITHUB_TOKEN is missing"
- exit 1
- fi
- echo "GITHUB_TOKEN is present"
- env:
- GITHUB_TOKEN: ${{ steps.committer.outputs.token }}
-
- - name: Clone homebrew tap
- run: |
- echo "Testing old URL pattern"
- old="https://${GITHUB_TOKEN}@github.com/sst/homebrew-tap.git"
- git clone "${old}" ./dist/homebrew-tap-old
- rm -rf ./dist/homebrew-tap-old
-
- echo "Testing new URL pattern"
- tap="https://x-access-token:${GITHUB_TOKEN}@github.com/anomalyco/homebrew-tap.git"
- git clone "${tap}" ./dist/homebrew-tap
- cd ./dist/homebrew-tap
- git status -sb
- env:
- GITHUB_TOKEN: ${{ steps.committer.outputs.token }}