update BasicWallet stucture in docs #94
This file contains hidden or 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
| name: Release | |
| on: | |
| push: | |
| branches: | |
| - main | |
| concurrency: ${{ github.workflow }}-${{ github.ref }} | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| release: | |
| name: Release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Enable Corepack | |
| run: corepack enable | |
| - name: Setting up Node LTS | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "lts/*" | |
| # registry-url: "https://registry.npmjs.org" | |
| # cache: "yarn" | |
| - name: Install dependencies | |
| run: yarn install | |
| - name: Build | |
| run: yarn workspace @zerochain/sdk build | |
| - name: Create Release Pull Request or Publish | |
| id: changesets | |
| uses: changesets/action@v1 | |
| with: | |
| publish: npm run publish # yarn publish won't work here because yarn@v1 doesn't support "publishConfig" in package.json | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
| - name: Export Error Logs as an Artifact | |
| uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: NPM error-logs | |
| path: /home/runner/.npm/_logs/ |