v3.290.0-staging-21b4f81a5 #65
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
name: Publish Canary | |
on: | |
push: | |
branches: | |
- staging | |
jobs: | |
build-and-publish: | |
env: | |
HUSKY: 0 | |
if: startsWith(github.event.head_commit.message, 'Publish') == true | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 15 | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
registry-url: 'https://registry.npmjs.org' | |
cache: yarn | |
- name: Install Dependencies | |
run: yarn install --frozen-lockfile --ignore-optional | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
- name: Build | |
run: NODE_ENV=production yarn build | |
- name: Fetch Latest Tags | |
run: | | |
git fetch --tags | |
- name: Set NPM Token | |
run: | | |
npm set '//registry.npmjs.org/:_authToken' ${{ secrets.NPM_PUBLISH_TOKEN }} | |
npm whoami | |
- name: Publish | |
run: | | |
yarn lerna publish from-package --yes --allowBranch=staging --loglevel=verbose --dist-tag canary |