Deployment
GitHub Actions
Getting Started
Building Workflows
Deployment
Additional Resources
Deployment
GitHub Actions
You can also deploy the workflow state with our built-in GitHub Action command:
name: Deploy Workflow State to Novu
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Sync State to Novu
uses: novuhq/actions-novu-sync@v0.0.4
with:
novu-api-key: ${{secrets.NOVU_API_KEY}} # Your Dev or Prod API Key to Novu
bridge-url: "" # This will be your target environment bridge url
Was this page helpful?