httpcat-cli 0.2.7 → 0.2.8-rc.1
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 +10 -0
- package/bun.lock +0 -1
- package/package.json +1 -1
|
@@ -294,6 +294,16 @@ jobs:
|
|
|
294
294
|
echo "Committing version update to main..."
|
|
295
295
|
git config user.name "github-actions[bot]"
|
|
296
296
|
git config user.email "github-actions[bot]@users.noreply.github.com"
|
|
297
|
+
|
|
298
|
+
# Ensure we're on main and pull latest changes before pushing
|
|
299
|
+
echo "Fetching latest changes from main..."
|
|
300
|
+
git fetch origin main
|
|
301
|
+
git checkout main
|
|
302
|
+
git pull origin main --rebase || {
|
|
303
|
+
echo "⚠️ Rebase failed, trying merge..."
|
|
304
|
+
git pull origin main --no-rebase
|
|
305
|
+
}
|
|
306
|
+
|
|
297
307
|
git add package.json
|
|
298
308
|
git commit -m "chore: bump version to $RELEASE_VERSION"
|
|
299
309
|
git push origin main
|
package/bun.lock
CHANGED
|
@@ -38,7 +38,6 @@
|
|
|
38
38
|
},
|
|
39
39
|
"overrides": {
|
|
40
40
|
"@solana/codecs-core": "5.1.0",
|
|
41
|
-
"@solana/instruction-plans/@solana/codecs-core": "5.1.0",
|
|
42
41
|
},
|
|
43
42
|
"packages": {
|
|
44
43
|
"@adraffy/ens-normalize": ["@adraffy/ens-normalize@1.11.1", "", {}, "sha512-nhCBV3quEgesuf7c7KYfperqSS14T8bYuvJ8PcLJp6znkZpFc0AuW4qBtr8eKVyPPe/8RSr7sglCWPU5eaxwKQ=="],
|