Skip to content

feat: add config to serve files (#336) #6

feat: add config to serve files (#336)

feat: add config to serve files (#336) #6

Workflow file for this run

name: Publish to npm
on:
push:
branches:
- prod
jobs:
publish:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3
- name: Publish to NPM
uses: actions/setup-node@e33196f7422957bea03ed53f6fbb155025ffc7b8 # v3
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- name: Publish to NPM
run: |
npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}