Skip to content

chore(deps): Upgrade Reactist to v24.2.0-beta (#68) #34

chore(deps): Upgrade Reactist to v24.2.0-beta (#68)

chore(deps): Upgrade Reactist to v24.2.0-beta (#68) #34

Workflow file for this run

name: Publish React package
on:
push:
tags:
- 'react-v*'
jobs:
# Publish to GitHub package registry
publish-github:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Configure Doist package repository
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
registry-url: https://npm.pkg.github.com/
scope: '@doist'
- name: Install dependencies
run: npm run bootstrap-ci:react
env:
NODE_AUTH_TOKEN: ${{secrets.GH_PACKAGES_TOKEN}}
- name: Publish package
working-directory: ./packages/ui-extensions-react
run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GH_PACKAGES_TOKEN}}