httpcat-cli 0.2.3-rc.3 → 0.2.4
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.
- package/.github/workflows/release.yml +2 -4
- package/bun.lock +1 -0
- package/package.json +1 -2
|
@@ -595,16 +595,14 @@ 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 }}
|
|
600
598
|
run: |
|
|
601
599
|
cd homebrew-tap
|
|
602
600
|
git config user.name "github-actions[bot]"
|
|
603
601
|
git config user.email "github-actions[bot]@users.noreply.github.com"
|
|
604
602
|
git add Formula/httpcat.rb
|
|
605
603
|
git commit -m "Update httpcat to ${{ needs.prepare.outputs.version }}" || exit 0
|
|
606
|
-
|
|
607
|
-
git push
|
|
604
|
+
git remote set-url origin https://${{ secrets.HOMEBREW_TAP_TOKEN }}@github.com/hathbanger/homebrew-httpcat.git
|
|
605
|
+
git push origin main
|
|
608
606
|
|
|
609
607
|
# Job 5: Create GitHub Release
|
|
610
608
|
create-release:
|
package/bun.lock
CHANGED
|
@@ -38,6 +38,7 @@
|
|
|
38
38
|
},
|
|
39
39
|
"overrides": {
|
|
40
40
|
"@solana/codecs-core": "5.1.0",
|
|
41
|
+
"@solana/instruction-plans/@solana/codecs-core": "5.1.0",
|
|
41
42
|
},
|
|
42
43
|
"packages": {
|
|
43
44
|
"@adraffy/ens-normalize": ["@adraffy/ens-normalize@1.11.1", "", {}, "sha512-nhCBV3quEgesuf7c7KYfperqSS14T8bYuvJ8PcLJp6znkZpFc0AuW4qBtr8eKVyPPe/8RSr7sglCWPU5eaxwKQ=="],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "httpcat-cli",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
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,7 +19,6 @@
|
|
|
19
19
|
"test:integration": "vitest run tests/integration"
|
|
20
20
|
},
|
|
21
21
|
"keywords": [
|
|
22
|
-
"402.cat",
|
|
23
22
|
"httpcat",
|
|
24
23
|
"x402",
|
|
25
24
|
"tokens",
|