refactor: rename option description #1
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: Deploy | |
on: | |
push: | |
branches: | |
- develop | |
- master | |
jobs: | |
canary: | |
runs-on: ubuntu-latest | |
if: github.ref_name == 'develop' && github.repository_owner == 'dequelabs' | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'npm' | |
- run: npm ci | |
- run: npm run bootstrap | |
# Make sure the working tree is clean | |
- run: git reset --hard HEAD | |
- run: npm config set "//registry.npmjs.org/:_authToken" ${{ secrets.NPM_TOKEN }} | |
- run: | | |
npx lerna publish prepatch \ | |
--no-verify-access \ | |
--no-git-tag-version \ | |
--no-push \ | |
--canary \ | |
--dist-tag=next \ | |
--exact \ | |
--force-publish \ | |
--yes | |
production: | |
runs-on: ubuntu-latest | |
if: github.ref_name == 'master' && github.repository_owner == 'dequelabs' | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'npm' | |
- run: npm ci | |
- run: npm run bootstrap | |
# Make sure the working tree is clean | |
- run: git reset --hard HEAD | |
- run: npm config set "//registry.npmjs.org/:_authToken" ${{ secrets.NPM_TOKEN }} | |
- run: | | |
npx lerna publish from-package \ | |
--force-publish='*' \ | |
--yes | |
- uses: softprops/action-gh-release@de2c0eb89ae2a093876385947365aca7b0e5f844 # v0.1.15 |