docs: Add release instructions and update React Native architecture s… #10
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: Changesets | |
| on: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| version: | |
| name: Version packages | |
| runs-on: ubuntu-latest | |
| if: github.actor != 'github-actions[bot]' | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: "24" | |
| - name: Install Changesets | |
| run: | | |
| mkdir -p /tmp/memoneo-changesets | |
| cd /tmp/memoneo-changesets | |
| npm install --no-package-lock --ignore-scripts @changesets/cli@^2.31.0 | |
| echo "/tmp/memoneo-changesets/node_modules/.bin" >> "$GITHUB_PATH" | |
| - name: Create version PR | |
| uses: changesets/action@v1 | |
| with: | |
| version: changeset version | |
| title: Version packages | |
| commit: Version packages | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |