generated from ztimson/template
ztimson
f243d9ed11
All checks were successful
Publish Library / Build NPM Project (push) Successful in 39s
28 lines
700 B
YAML
28 lines
700 B
YAML
name: Publish Library
|
|
run-name: Publish Library
|
|
|
|
on:
|
|
push:
|
|
|
|
jobs:
|
|
build:
|
|
name: Build NPM Project
|
|
runs-on: ubuntu-latest
|
|
container: node:alpine
|
|
steps:
|
|
- name: Clone Repository
|
|
uses: ztimson/actions/clone@develop
|
|
|
|
- name: Install & Build
|
|
run: npm i && npm run build
|
|
|
|
- name: Upload to Registry
|
|
uses: ztimson/actions/npm/publish@develop
|
|
|
|
- name: Upload to NPM
|
|
uses: ztimson/actions/npm/publish@develop
|
|
with:
|
|
owner: ztimson
|
|
registry: https://registry.npmjs.org/
|
|
token: ${{secrets.NPM_TOKEN}}
|