Skip to content

ADCIO-4763) fix: add icon prefix to icon svg file (#114) #85

ADCIO-4763) fix: add icon prefix to icon svg file (#114)

ADCIO-4763) fix: add icon prefix to icon svg file (#114) #85

name: CDS Package Publish
on:
push:
branches:
- main
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: '18'
- uses: pnpm/action-setup@v3
with:
version: 8
- uses: actions/cache@v3
id: pnpm-cache
with:
path: |
node_modules
styled-system
key: ${{ runner.os }}-pnpm-${{ hashFiles('pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-
- if: steps.pnpm-cache.outputs.cache-hit != 'true'
run: pnpm install --no-frozen-lockfile
- run: pnpm run build
- uses: JS-DevTools/npm-publish@v1
with:
token: ${{ secrets.NPM_TOKEN }}