ai/at
1
0
This commit is contained in:
2026-01-21 23:23:20 +09:00
parent 5288f33029
commit 182442e354
33 changed files with 631 additions and 634 deletions

View File

@@ -5,7 +5,7 @@ on:
branches:
- main
paths:
- 'html/**'
- 'web/**'
workflow_dispatch:
jobs:
@@ -19,12 +19,25 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: npm install
working-directory: web
- name: Build
run: npm run build
working-directory: web
- name: Deploy to Cloudflare Pages
uses: cloudflare/pages-action@v1
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
projectName: ${{ secrets.CLOUDFLARE_PROJECT_NAME }}
directory: html
directory: web/dist/aiat
gitHubToken: ${{ secrets.GITHUB_TOKEN }}
wranglerVersion: '3'