Skip to content

DragNDropFileInput and ColorPickerInput! #14

DragNDropFileInput and ColorPickerInput!

DragNDropFileInput and ColorPickerInput! #14

Workflow file for this run

name: Publish to GitHub Packages
on:
release:
types: [published]
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: 16
registry-url: https://npm.pkg.github.com/
- name: Install dependencies
run: npm ci
- name: Build
run: npm run build
- name: Publish
run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.PAT}}