Skip to content

Commit

Permalink
Add needed files for build start
Browse files Browse the repository at this point in the history
  • Loading branch information
akanuri9 committed Apr 8, 2024
1 parent c61e435 commit 0ae5788
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/create-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,14 @@ jobs:
run: npm ci
- name: Run Build
run: npm run build
- name: Create Build Artifact
run: |
mkdir ./build
cp ./node_modules -pR ./build/node_modules
cp ./next.config.js ./build/next.config.js
cp ./package.json ./build/package.json
- name: Upload build folder
uses: actions/upload-artifact@v4
with:
name: BuildArtifact
path: ./.next
path: ./build

0 comments on commit 0ae5788

Please sign in to comment.