fix(react-native): install JSI bindings under NewArch (bridgeless) (#96) #39
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 | |
| id-token: write # Needed for npm trusted publishing | |
| pull-requests: write | |
| jobs: | |
| release-stable: | |
| runs-on: ubuntu-24.04 | |
| name: Release Stable | |
| outputs: | |
| published: ${{ steps.changesets.outputs.published }} | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v6 | |
| - uses: pnpm/action-setup@v4 | |
| - name: Setup NodeJS | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 22 | |
| cache: "pnpm" | |
| - name: Update npm | |
| run: npm install -g npm@^11 | |
| - name: Install Dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Create Release Pull Request or Publish to npm | |
| id: changesets | |
| uses: changesets/action@v1 | |
| with: | |
| title: "chore(release): new version" | |
| commit: "chore(release): new version" | |
| publish: pnpm release | |
| version: pnpm changeset-version | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Get current package version | |
| id: get_version | |
| run: echo "CURRENT_PACKAGE_VERSION=$(node -p "require('./packages/askar-shared/package.json').version")" >> $GITHUB_ENV | |
| - name: Create Github Release | |
| if: steps.changesets.outputs.published == 'true' | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| tag_name: v${{ env.CURRENT_PACKAGE_VERSION }} | |
| release-unstable: | |
| runs-on: ubuntu-24.04 | |
| name: Release Unstable | |
| needs: release-stable | |
| if: always() && github.event_name == 'push' && needs.release-stable.outputs.published == 'false' | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v6 | |
| - uses: pnpm/action-setup@v4 | |
| - name: Setup NodeJS | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 20 | |
| cache: "pnpm" | |
| - name: Update npm | |
| run: npm install -g npm@^11 | |
| - name: Install Dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Create unstable release | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| run: | | |
| # this ensures there's always a patch release created | |
| cat << 'EOF' > .changeset/snapshot-template-changeset.md | |
| --- | |
| '@openwallet-foundation/askar-shared': patch | |
| --- | |
| snapshot release | |
| EOF | |
| pnpm changeset version --snapshot alpha | |
| pnpm style:fix | |
| pnpm build | |
| pnpm changeset publish --tag alpha | |
| CURRENT_PACKAGE_VERSION=$(node -p "require('./packages/askar-shared/package.json').version") | |
| git config --global user.name "github-actions[bot]" | |
| git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
| git tag v$CURRENT_PACKAGE_VERSION | |
| git push origin v$CURRENT_PACKAGE_VERSION --no-verify |