Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Do not merge - chore: some improvements on CI #1582

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,11 @@ jobs:
tag: ${{ needs.release-please.outputs.sdk_tag }}
bundle_filename: namada-${{ needs.release-please.outputs.sdk_tag }}.zip
working_dir: ./packages/sdk
- name: Publish to NPM repository
working_dir: ./packages/sdk
run: yarn npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

build-types:
needs: [release-please]
Expand Down
2 changes: 1 addition & 1 deletion apps/namadillo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"dev": "VITE_REVISION=$(git rev-parse HEAD) vite",
"dev:local": "NODE_ENV=development NAMADA_INTERFACE_LOCAL=\"true\" yarn dev",
"dev:proxy": "VITE_PROXY=true && ./scripts/start-proxies.sh && yarn dev:local",
"build": "NODE_ENV=production && yarn wasm:build && VITE_REVISION=$(git rev-parse HEAD) vite build",
"build": "NODE_ENV=production && yarn wasm:build:multicore && VITE_REVISION=$(git rev-parse HEAD) vite build",
"build:only": "NODE_ENV=production && VITE_REVISION=$(git rev-parse HEAD) vite build",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "yarn lint -- --fix",
Expand Down
Loading