Skip to content

Add explainer section to web UI and web app link to README #6

Add explainer section to web UI and web app link to README

Add explainer section to web UI and web app link to README #6

Workflow file for this run

name: Deploy to Cloudflare Pages
on:
push:
tags:
- 'v*'
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version: stable
check-latest: true
cache: true
- name: Build WASM
run: make wasm VERSION=${GITHUB_REF_NAME}
- name: Deploy to Cloudflare Pages
uses: cloudflare/wrangler-action@v3
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
workingDirectory: web
command: pages deploy public --project-name certkit --branch main