Skip to content

skips feature feed query if no ID (#197) #12

skips feature feed query if no ID (#197)

skips feature feed query if no ID (#197) #12

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}}