Namespace root package name #147
This file contains 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
on: | |
push: | |
branches: | |
- master | |
- next | |
name: Publish mainline | |
jobs: | |
publish: | |
name: Publish | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Dump GitHub context | |
env: | |
GITHUB_CONTEXT: ${{ toJson(github) }} | |
run: echo "$GITHUB_CONTEXT" | |
- name: Read .nvmrc | |
run: echo ::set-output name=nvmrc::$(cat .nvmrc) | |
id: nvm | |
- name: Setup node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '${{ steps.nvm.outputs.nvmrc }}' | |
registry-url: https://registry.npmjs.org/ | |
- uses: actions/cache@v1 | |
with: | |
path: ~/.cache/yarn | |
key: ${{ runner.OS }}-yarn-cache-v1-${{ hashFiles('**/yarn.lock') }} | |
restore-keys: | | |
${{ runner.os }}-yarn-cache-v1- | |
- name: Install | |
run: yarn install --frozen-lockfile | |
- name: Bootstrap | |
run: yarn bootstrap | |
- name: Publish | |
run: | | |
cd packages/flame | |
node ./scripts/check-changed.js && yarn build && yarn build:docgen && npm publish dist --quiet || exit 0 | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} |