Skip to content

chore(release): cut v0.8.3 (#133) #19

chore(release): cut v0.8.3 (#133)

chore(release): cut v0.8.3 (#133) #19

Workflow file for this run

name: Deploy to Cloudflare Pages
on:
push:
tags:
- 'v*'
permissions:
contents: read
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