Skip to content

get workflow title right #6

get workflow title right

get workflow title right #6

Workflow file for this run

# Github action to deploy the web-embed project to NPM
name: Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v3
with:
registry-url: https://registry.npmjs.org/
- name: Deploy to NPM
run: npm run bump
working-directory: web-embeds
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}