fix(text): inherit letter spacing from theme (#562) #379
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: Release | |
on: | |
push: | |
branches: [master, next, next-major, beta, alpha, '[0-9]+.x'] | |
jobs: | |
release: | |
name: Release | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
concurrency: changes-deploys | |
steps: | |
- name: Checkout Maker master branch | |
uses: actions/checkout@v2 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm ci | |
- name: Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
run: npx semantic-release@19 | |
- name: Checkout Maker deploys branch in .dist directory | |
uses: actions/checkout@v2 | |
with: | |
repository: square/maker | |
ref: deploys | |
path: .dist | |
- name: Build & deploy Styleguide & Lab | |
run: | | |
cd .dist | |
git config user.name github-actions | |
git config user.email github-actions@github.com | |
cd .. | |
export DEPLOY_NAME=library_version | |
npm run deploy-all-ci |