Skip to content

Add OIDC manifest and demo gateway auth #3

Add OIDC manifest and demo gateway auth

Add OIDC manifest and demo gateway auth #3

name: Deploy Cloudflare Gateway
on:
workflow_dispatch:
push:
branches: [main]
paths:
- "cloudflare/**"
- ".github/workflows/cloudflare-gateway.yml"
jobs:
deploy:
runs-on: ubuntu-latest
defaults:
run:
working-directory: cloudflare
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "22"
cache: npm
cache-dependency-path: cloudflare/package-lock.json
- name: Install dependencies
run: npm ci
- name: Deploy Worker
run: npm run deploy
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}