File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -6,10 +6,10 @@ name: Deploy Next.js site to Pages
66
77on :
88 schedule :
9- - cron : " 0 0 * * *" # runs at every 12AM UTC
9+ - cron : ' 0 0 * * *' # runs at every 12AM UTC
1010 # Runs on pushes targeting the default branch
1111 push :
12- branches : [" main" ]
12+ branches : [' main' ]
1313
1414 # Allows you to run this workflow manually from the Actions tab
1515 workflow_dispatch :
@@ -22,15 +22,15 @@ permissions:
2222
2323# Allow one concurrent deployment
2424concurrency :
25- group : " pages"
25+ group : ' pages'
2626 cancel-in-progress : true
2727
2828jobs :
2929 build :
3030 runs-on : ubuntu-latest
3131 strategy :
3232 matrix :
33- python-version : [" 3.11" ]
33+ python-version : [' 3.11' ]
3434 steps :
3535 # Build documentation pages
3636 - uses : actions/checkout@v4
7070 - name : Setup Node
7171 uses : actions/setup-node@v4
7272 with :
73- node-version : " 16 "
73+ node-version : ' 16 '
7474 cache : ${{ steps.detect-package-manager.outputs.manager }}
7575 - name : Setup Pages
7676 uses : actions/configure-pages@v5
You can’t perform that action at this time.
0 commit comments