Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
lassebje committed Oct 2, 2024
1 parent b1fea12 commit 7cacec5
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/deploy_page.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,18 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '22.x' # Use the version of Node.js your project needs
node-version: 22
cache: 'npm'

- name: Install dependencies
run: npm ci

- name: Build project
run: npm run predeploy
run:
npm run predeploy
npm ci

- name: Upload build artifacts
uses: actions/upload-pages-artifact@v1 # This stores the build output
with:
path: $GITHUB_WORKSPACE/build

deploy:
needs: build
Expand Down

0 comments on commit 7cacec5

Please sign in to comment.