2023-02-22 12:11:35 +00:00
|
|
|
name: Publish libs to npm
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
inputs:
|
|
|
|
project:
|
|
|
|
description: 'Monorepo project to publish'
|
|
|
|
required: true
|
|
|
|
type: choice
|
|
|
|
options:
|
|
|
|
- ui-toolkit
|
|
|
|
- react-helpers
|
|
|
|
- tailwindcss-config
|
|
|
|
- types
|
2023-03-01 16:35:49 +00:00
|
|
|
- utils
|
|
|
|
- i18n
|
2023-02-22 12:11:35 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
publish:
|
|
|
|
name: Build & Publish - Tag
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
contents: 'read'
|
|
|
|
actions: 'read'
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: User Node.js 16
|
|
|
|
id: Node
|
|
|
|
uses: actions/setup-node@v3
|
|
|
|
with:
|
|
|
|
node-version: 16.15.1
|
|
|
|
- name: Restore node_modules from cache
|
|
|
|
uses: actions/cache@v3
|
|
|
|
with:
|
|
|
|
path: '**/node_modules'
|
|
|
|
key: node_modules-${{ hashFiles('**/yarn.lock') }}
|
|
|
|
- name: Install root dependencies
|
|
|
|
run: yarn install --frozen-lockfile
|
|
|
|
- name: Build project
|
|
|
|
run: yarn nx build ${{inputs.project}}
|
|
|
|
- name: Publish project to @vegaprotocol
|
|
|
|
uses: JS-DevTools/npm-publish@v1
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.NPM_TOKEN }}
|
|
|
|
package: dist/libs/${{inputs.project}}/package.json
|
|
|
|
access: public
|