Skip to content

Add pricing link

Add pricing link #5449

Workflow file for this run

name: Deploy App Worker
on:
push:
branches:
- master
repository_dispatch:
workflow_dispatch:
jobs:
publish_worker:
name: Deploy Worker
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 20
cache: "npm"
- name: Install NPM Dependencies
run: npm install
- name: Deploy worker
run: npm run deploy
env:
CF_ACCOUNT_ID: ${{ secrets.CF_ACCOUNT_ID }}
CF_API_KEY: ${{ secrets.CF_GLOBAL_APIKEY }}
CF_EMAIL: ${{ secrets.CF_EMAIL }}
SANITY_AUTH_TOKEN: ${{ secrets.SANITY_AUTH_TOKEN }}