-
Notifications
You must be signed in to change notification settings - Fork 354
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: 📦️ Update PolkadotJS Versions (#3155)
* pjs update * update viem * update pkgs * update versions * update zombienet * Update typescript-api/package.json * Update typescript-api/package.json * add types-bundle pub script --------- Co-authored-by: Rodrigo Quelhas <[email protected]>
- Loading branch information
1 parent
6d6faaf
commit a902cf6
Showing
9 changed files
with
899 additions
and
2,692 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: Publish moonbeam-types-bundle | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
TargetSHA: | ||
description: full sha of commit to publish moonbeam-types-bundle from | ||
required: true | ||
DryRun: | ||
description: Dry run mode | ||
required: false | ||
default: "false" | ||
|
||
jobs: | ||
publish-moonbeam-types-bundle: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.event.inputs.TargetSHA }} | ||
- uses: pnpm/action-setup@v4 | ||
name: Install pnpm | ||
with: | ||
version: 9 | ||
run_install: false | ||
- name: Install Node.js | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: "test/.nvmrc" | ||
cache: pnpm | ||
registry-url: https://registry.npmjs.org/ | ||
- name: Build moonbeam-types-bundle package | ||
run: | | ||
cd moonbeam-types-bundle | ||
pnpm i --frozen-lockfile | ||
pnpm build | ||
- name: Publish moonbeam-types-bundle | ||
run: | | ||
cd moonbeam-types-bundle | ||
if [ "${{ github.event.inputs.DryRun }}" == "true" ]; then | ||
pnpm publish --access public --no-git-checks --dry-run | ||
else | ||
pnpm publish --access public --no-git-checks | ||
fi | ||
env: | ||
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.