Update LICENSE (#28) #28
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: Node.js Package | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.15.1 | |
| - run: npm install | |
| - run: npm test | |
| publish-npm: | |
| needs: build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20.15.1 | |
| registry-url: https://registry.npmjs.org/ | |
| # Step 3: Bump version (incrementing the patch) | |
| - name: Bump version | |
| run: | | |
| # Extract current version | |
| current_version=$(npm view @thinksys/react-native-mediapipe version) | |
| # Split version into components | |
| major=$(echo $current_version | cut -d. -f1) | |
| minor=$(echo $current_version | cut -d. -f2) | |
| patch=$(echo $current_version | cut -d. -f3) | |
| # Increment the patch version | |
| new_patch=$((patch + 1)) | |
| # Create new version string | |
| new_version="$major.$minor.$new_patch" | |
| # Update the version in package.json | |
| jq --arg new_version "$new_version" '.version = $new_version' package.json > tmp.json && mv tmp.json package.json | |
| # Display the new version for debugging | |
| echo "New version is $new_version" | |
| - run: npm install | |
| - run: npm publish | |
| env: | |
| NODE_AUTH_TOKEN: ${{secrets.NPMJS_ACCESS_TOKEN}} |