Skip to content

Commit

Permalink
github pages CI & vite
Browse files Browse the repository at this point in the history
  • Loading branch information
Brunwo committed Oct 6, 2024
1 parent 584ce6d commit 3dfde09
Show file tree
Hide file tree
Showing 4 changed files with 1,566 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
image: node:16.5.0
pages:
stage: deploy
cache:
key:
files:
- package-lock.json
prefix: npm
paths:
- node_modules/
script:
- npm install
- npm run build
- cp -a dist/. public/
artifacts:
paths:
- public
rules:
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
Loading

0 comments on commit 3dfde09

Please sign in to comment.