mirror of
https://github.com/ArthurDanjou/artsite.git
synced 2026-01-31 08:29:26 +01:00
fix: ajouter la configuration de déploiement dans Cloudflare et mettre à jour la configuration Nitro
This commit is contained in:
38
.github/cloudflare.yml
vendored
Normal file
38
.github/cloudflare.yml
vendored
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
name: Deploy to Cloudflare Workers
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
deploy:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
name: Deploy
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Setup Bun
|
||||||
|
uses: oven-sh/setup-bun@v2
|
||||||
|
with:
|
||||||
|
bun-version: latest
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: bun install --frozen-lockfile
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: bun run build
|
||||||
|
env:
|
||||||
|
NUXT_PUBLIC_I18N_BASE_URL: ${{ vars.NUXT_PUBLIC_I18N_BASE_URL }}
|
||||||
|
NUXT_API_URL: ${{ vars.NUXT_API_URL }}
|
||||||
|
STUDIO_GITHUB_CLIENT_ID: ${{ vars.STUDIO_GITHUB_CLIENT_ID }}
|
||||||
|
STUDIO_GITHUB_CLIENT_SECRET: ${{ vars.STUDIO_GITHUB_CLIENT_SECRET }}
|
||||||
|
|
||||||
|
- name: Publish to Cloudflare Workers
|
||||||
|
uses: cloudflare/wrangler-action@v3
|
||||||
|
with:
|
||||||
|
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
|
||||||
|
accountId: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
|
||||||
|
command: deploy
|
||||||
@@ -102,7 +102,8 @@ export default defineNuxtConfig({
|
|||||||
nitro: {
|
nitro: {
|
||||||
preset: 'cloudflare_module',
|
preset: 'cloudflare_module',
|
||||||
cloudflare: {
|
cloudflare: {
|
||||||
nodeCompat: true
|
nodeCompat: true,
|
||||||
|
deployConfig: true
|
||||||
},
|
},
|
||||||
prerender: {
|
prerender: {
|
||||||
routes: ['/'],
|
routes: ['/'],
|
||||||
|
|||||||
Reference in New Issue
Block a user