https://formkit.com/getting-started/your-first-form
Some checks failed
/ surge (push) Failing after 4s

This commit is contained in:
严浩
2024-11-15 13:02:54 +08:00
parent a2bd1f22d2
commit 83a668d9e0
5 changed files with 165 additions and 33 deletions

16
.github/workflows/ci.yaml vendored Normal file
View File

@ -0,0 +1,16 @@
# https://cn.vitejs.dev/guide/static-deploy
on:
push:
jobs:
surge:
runs-on: ubuntu-latest
steps:
- uses: yanhao98/composite-actions/setup-node-environment@main
- name: deploy
run: |
pnpm build
export DEPLOY_DOMAIN=https://vue-formkit-example.oo1.dev
cp dist/index.html dist/200.html
npx surge --project ./dist --domain $DEPLOY_DOMAIN --token d843de16b331c626f10771245c56ed93 # npx surge token
echo the preview URL is $DEPLOY_DOMAIN