Skip to content

Commit 2806e50

Browse files
committed
Update homebrew tap
1 parent f262270 commit 2806e50

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/homebrew-sync.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
if: ${{ !endsWith(github.ref_name, '-test') }}
1414
runs-on: ubuntu-latest
1515
env:
16-
HOMEBREW_EC_TOKEN: ${{ secrets.HOMEBREW_EC_TOKEN }}
16+
HOMEBREW_TAP_TOKEN: ${{ secrets.HOMEBREW_TAP_TOKEN }}
1717
steps:
1818
- name: Compute source tarball checksum
1919
run: |
@@ -27,7 +27,7 @@ jobs:
2727
2828
- name: Clone tap repository
2929
run: |
30-
git clone "https://x-access-token:${HOMEBREW_EC_TOKEN}@github.com/chojs23/homebrew-ec.git" homebrew-ec
30+
git clone "https://x-access-token:${HOMEBREW_TAP_TOKEN}@github.com/chojs23/homebrew-tap.git" homebrew-tap
3131
3232
- name: Update formula
3333
run: |
@@ -39,7 +39,7 @@ jobs:
3939
4040
url = os.environ["TARBALL_URL"]
4141
sha256 = os.environ["TARBALL_SHA256"]
42-
path = pathlib.Path("homebrew-ec/Formula/ec.rb")
42+
path = pathlib.Path("homebrew-tap/Formula/ec.rb")
4343
text = path.read_text(encoding="utf-8")
4444
4545
updated, url_count = re.subn(r'^\s*url\s+".*"\s*$', f' url "{url}"', text, flags=re.M)
@@ -54,7 +54,7 @@ jobs:
5454
5555
- name: Commit formula updates
5656
run: |
57-
cd homebrew-ec
57+
cd homebrew-tap
5858
if git diff --quiet; then
5959
echo "Formula already up to date"
6060
exit 0

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ easy-conflict is a terminal native Git mergetool with a 3 pane IntelliJ like res
2121
### Homebrew
2222

2323
```
24-
brew install chojs23/ec/ec
24+
brew install chojs23/tap/ec
2525
```
2626

2727
### Go install

0 commit comments

Comments
 (0)