httpcat-cli 0.2.4 → 0.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -595,14 +595,16 @@ jobs:
|
|
|
595
595
|
cat "$FORMULA_FILE"
|
|
596
596
|
|
|
597
597
|
- name: Commit and push Homebrew formula update
|
|
598
|
+
env:
|
|
599
|
+
GIT_TOKEN: ${{ secrets.HOMEBREW_TAP_TOKEN }}
|
|
598
600
|
run: |
|
|
599
601
|
cd homebrew-tap
|
|
600
602
|
git config user.name "github-actions[bot]"
|
|
601
603
|
git config user.email "github-actions[bot]@users.noreply.github.com"
|
|
602
604
|
git add Formula/httpcat.rb
|
|
603
605
|
git commit -m "Update httpcat to ${{ needs.prepare.outputs.version }}" || exit 0
|
|
604
|
-
|
|
605
|
-
git push
|
|
606
|
+
# Push using token in URL (simplest approach)
|
|
607
|
+
git push https://${GIT_TOKEN}@github.com/hathbanger/homebrew-httpcat.git HEAD:main
|
|
606
608
|
|
|
607
609
|
# Job 5: Create GitHub Release
|
|
608
610
|
create-release:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "httpcat-cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.5",
|
|
4
4
|
"description": "CLI tool for interacting with httpcat agent - create, buy, and sell tokens with x402 payments",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"test:integration": "vitest run tests/integration"
|
|
20
20
|
},
|
|
21
21
|
"keywords": [
|
|
22
|
+
"402.cat",
|
|
22
23
|
"httpcat",
|
|
23
24
|
"x402",
|
|
24
25
|
"tokens",
|