File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed
Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -75,13 +75,14 @@ jobs:
7575 - name : Install dependencies
7676 run : ${{ steps.detect-package-manager.outputs.manager }} ${{ steps.detect-package-manager.outputs.command }}
7777 - name : Build with Next.js
78- run : |
79- ${{ steps.detect-package-manager.outputs.runner }} next build;
80- cp -r ./public ./.next/standalone/;
81- cp -r ./.next/static ./.next/standalone/.next/
78+ run : ${{ steps.detect-package-manager.outputs.runner }} next build
8279 env :
8380 REACT_APP_ALCHEMY_API_KEY : ${{ secrets.REACT_APP_ALCHEMY_API_KEY }}
8481 REACT_APP_ETHERSCAN_API_KEY : ${{ secrets.REACT_APP_ETHERSCAN_API_KEY }}
82+ - name : Copy public and static folders to build output
83+ run : |
84+ cp -r ./public ./.next/standalone/ ;
85+ cp -r ./.next/static ./.next/standalone/.next/
8586 - name : Upload artifact
8687 uses : actions/upload-pages-artifact@v3
8788 with :
You can’t perform that action at this time.
0 commit comments