Skip to content

Workflow file for this run

name: Publish zeplin-extension-style-kit to NPM
on:
push:
tags:
- 'zeplin-extension-style-kit@*'
jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '16.14.0'
registry-url: 'https://registry.npmjs.org/'
scope: '@zeplin'
- name: Cache Dependencies
uses: actions/cache@v3
id: npm-cache # Use this to check for `cache-hit` ==> if: steps.npm-cache.outputs.cache-hit != 'true'
with:
path: ${{ steps.npm-cache-dir.outputs.dir }}
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install Dependencies
run: npm install
- name: Build Target Package
run: npm run build --workspace=zeplin-extension-style-kit
- name: Publish zeplin-extension-style-kit to NPM
run: |
npm run publish-pkg --workspace=zeplin-extension-style-kit
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN_EXTENSIONS }}