fix: Add sessionToken prop to WalletDropdownFundLink (#2522) #139
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: Publish alpha version | |
on: | |
push: | |
branches: | |
- alpha | |
paths: | |
- 'packages/onchainkit/**' | |
concurrency: ${{ github.workflow }}-${{ github.ref }} | |
permissions: | |
contents: read | |
jobs: | |
publish-alpha: | |
runs-on: ubuntu-latest | |
environment: release | |
permissions: | |
contents: read | |
steps: | |
- name: Harden the runner (Audit all outbound calls) | |
uses: step-security/harden-runner@002fdce3c6a235733a90a27c80493a3241e56863 # v2.12.1 | |
with: | |
egress-policy: audit | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: 'Setup' | |
uses: ./.github/actions/setup | |
- name: Build OnchainKit | |
shell: bash | |
run: pnpm f:ock build | |
- name: Build create-onchain | |
shell: bash | |
run: pnpm f:create build | |
- name: Set deployment token | |
run: npm config set '//registry.npmjs.org/:_authToken' "${{ secrets.NPM_TOKEN }}" | |
- name: Publish OnchainKit alpha | |
id: publish-ock | |
shell: bash | |
run: pnpm f:ock publish-prerelease --tag alpha | |
- name: Publish create-onchain alpha | |
shell: bash | |
run: pnpm f:create publish-prerelease --tag alpha --version ${{ steps.publish-ock.outputs.version }} |