mirror of
https://github.com/rive-app/rive-react.git
synced 2026-03-13 08:22:30 +08:00
80 lines
2.6 KiB
YAML
80 lines
2.6 KiB
YAML
name: Publish to NPM
|
|
on:
|
|
pull_request:
|
|
types: [closed]
|
|
branches:
|
|
- main
|
|
jobs:
|
|
determine_version:
|
|
name: Determine the next build version
|
|
if: github.event.pull_request.merged == true
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
version: ${{ steps.echo_version.outputs.version }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Install dependencies
|
|
run: npm install
|
|
working-directory: ./
|
|
- name: Git config
|
|
run: |
|
|
git config --local user.email 'hello@rive.app'
|
|
git config --local user.name ${{ github.actor }}
|
|
- name: Authenticate with registry
|
|
run: npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
|
|
- id: determine_version
|
|
name: Get Version
|
|
run: npm run release -- --ci --release-version | tail -n 1 > RELEASE_VERSION
|
|
working-directory: ./
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.REPO_TOKEN }}
|
|
- id: echo_version
|
|
run: echo "::set-output name=version::$(cat ./RELEASE_VERSION)"
|
|
|
|
merge_job:
|
|
if: github.event.pull_request.merged == true
|
|
runs-on: ubuntu-latest
|
|
needs: [determine_version]
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '16.x'
|
|
registry-url: 'https://registry.npmjs.org'
|
|
- name: Install Modules
|
|
run: npm install
|
|
- name: Run type check
|
|
run: npm run types:check
|
|
- name: Run Linter
|
|
run: npm run lint
|
|
- name: Run Tests
|
|
run: npm test
|
|
- name: Build main dist
|
|
run: npm run build
|
|
- name: Copy separated builds
|
|
run: ./scripts/build.sh
|
|
- name: Copy package jsons to separate react outputs
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
run: ./scripts/setup_all_packages.sh
|
|
- name: Bump Versions of react outputs
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
RELEASE_VERSION: ${{ needs.determine_version.outputs.version }}
|
|
run: ./scripts/bump_all_versions.sh
|
|
- name: Git config
|
|
run: |
|
|
git config --local user.email 'hello@rive.app'
|
|
git config --local user.name ${{ github.actor }}
|
|
- name: Authenticate with registry
|
|
run: npm config set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}
|
|
- name: Release rive-react
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.REPO_TOKEN }}
|
|
run: npm run release -- --ci
|
|
- name: Release @rive-app/react-* variants
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.REPO_TOKEN }}
|
|
run: ./scripts/publish_all.sh
|