feat: Initial commit :)

This commit is contained in:
daudix-UFO
2023-08-31 03:38:44 +03:00
parent 940c84f4ee
commit f6cc7270d8
44 changed files with 2725 additions and 1 deletions

28
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,28 @@
image: jekyll/jekyll
cache:
paths:
- _bundle/
build:
stage: build
script:
- bundle install
- bundle exec jekyll build
- mv _site public
artifacts:
paths:
- public
except:
- main
pages:
stage: deploy
script:
- bundle exec jekyll build
- mv _site public
artifacts:
paths:
- public
only:
- main