Skip to content

Valid types, new generic icon type #12

Valid types, new generic icon type

Valid types, new generic icon type #12

Workflow file for this run

name: Publish @osrd-project/ui-icons on Release
on:
release:
types: [created]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v3
with:
node-version: '18'
registry-url: 'https://registry.npmjs.org/'
- run: |
npm ci
VERSION=${GITHUB_REF/refs\/tags\//}
npm version $VERSION --no-git-tag-version
npm run build
npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
working-directory: ./ui-icons