Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,9 @@
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": []
"ignore": [],
"privatePackages": {
"version": false,
"tag": false
}
}
5 changes: 5 additions & 0 deletions .github/workflows/publish_npm_coinbase_x402.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ jobs:
contents: read
id-token: write
steps:
- name: Refuse to publish a retired package
run: |
echo "::error::@sei-js x402 packages are retired. Sei is supported natively upstream via @x402/*. See MIGRATION.md."
exit 1

- uses: actions/checkout@v4

- name: Setup pnpm
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/publish_npm_x402.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ jobs:
contents: read
id-token: write
steps:
- name: Refuse to publish a retired package
run: |
echo "::error::@sei-js x402 packages are retired. Sei is supported natively upstream via @x402/*. See MIGRATION.md."
exit 1

- uses: actions/checkout@v4

- name: Setup pnpm
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/publish_npm_x402_axios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ jobs:
contents: read
id-token: write
steps:
- name: Refuse to publish a retired package
run: |
echo "::error::@sei-js x402 packages are retired. Sei is supported natively upstream via @x402/*. See MIGRATION.md."
exit 1

- uses: actions/checkout@v4

- name: Setup pnpm
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/publish_npm_x402_express.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ jobs:
contents: read
id-token: write
steps:
- name: Refuse to publish a retired package
run: |
echo "::error::@sei-js x402 packages are retired. Sei is supported natively upstream via @x402/*. See MIGRATION.md."
exit 1

- uses: actions/checkout@v4

- name: Setup pnpm
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/publish_npm_x402_fetch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ jobs:
contents: read
id-token: write
steps:
- name: Refuse to publish a retired package
run: |
echo "::error::@sei-js x402 packages are retired. Sei is supported natively upstream via @x402/*. See MIGRATION.md."
exit 1

- uses: actions/checkout@v4

- name: Setup pnpm
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/publish_npm_x402_hono.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ jobs:
contents: read
id-token: write
steps:
- name: Refuse to publish a retired package
run: |
echo "::error::@sei-js x402 packages are retired. Sei is supported natively upstream via @x402/*. See MIGRATION.md."
exit 1

- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/publish_npm_x402_next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ jobs:
contents: read
id-token: write
steps:
- name: Refuse to publish a retired package
run: |
echo "::error::@sei-js x402 packages are retired. Sei is supported natively upstream via @x402/*. See MIGRATION.md."
exit 1

- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
Expand Down
11 changes: 6 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
name: Release @sei-js packages

on:
push:
branches:
- main
paths:
- "typescript/**"
workflow_dispatch:

concurrency: ${{ github.workflow }}-${{ github.ref }}

Expand All @@ -18,6 +14,11 @@ jobs:
pull-requests: write
id-token: write
steps:
- name: Refuse to release a retired package set
run: |
echo "::error::@sei-js x402 packages are retired. Sei is supported natively upstream via @x402/*. See MIGRATION.md."
exit 1

- name: Checkout Repo
uses: actions/checkout@v4
with:
Expand Down
Loading
Loading