We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03e0bff commit dbed434Copy full SHA for dbed434
.github/workflows/deploy.yml
@@ -4,10 +4,15 @@ on:
4
push:
5
tags:
6
- 'v[0-9]+.[0-9]+.[0-9]+'
7
+ schedule:
8
+ - cron: '0 0 * * 1'
9
+ workflow_dispatch:
10
11
jobs:
12
build-and-deploy:
- runs-on: ubuntu-latest
13
+ runs-on: ubuntu-24.04
14
+ permissions:
15
+ contents: write
16
17
steps:
18
- name: Checkout
@@ -25,7 +30,7 @@ jobs:
25
30
run: npm run build
26
31
27
32
- name: Deploy
28
- uses: peaceiris/actions-gh-pages@v3
33
+ uses: peaceiris/actions-gh-pages@v4
29
34
with:
- github_token: ${{ secrets.DEPLOY_TOKEN }}
35
+ github_token: ${{ secrets.GITHUB_TOKEN }}
36
publish_dir: ./out
next.config.mjs
@@ -1,5 +1,6 @@
1
/** @type {import('next').NextConfig} */
2
const nextConfig = {
3
+ output: 'export',
eslint: {
ignoreDuringBuilds: true,
},
0 commit comments