diff options
author | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-04-30 18:33:35 +0300 |
---|---|---|
committer | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-04-30 18:33:35 +0300 |
commit | 3826519cadd065d30e26cabcebf9b8b4be710cb0 (patch) | |
tree | a3b054f68a145a78160862d891cd14321eba6de3 | |
parent | 515eb89fa1a5e9d8899109c045e4a448896dbcdf (diff) | |
parent | ff9726049d8073800746313b57d8d95b4713d88b (diff) | |
download | stvnliu.gitlab.io-3826519cadd065d30e26cabcebf9b8b4be710cb0.tar.gz stvnliu.gitlab.io-3826519cadd065d30e26cabcebf9b8b4be710cb0.tar.bz2 stvnliu.gitlab.io-3826519cadd065d30e26cabcebf9b8b4be710cb0.zip |
Merge branch 'main' of gitlab.com:stvnliu/homepage
-rw-r--r-- | .gitlab-ci.yml | 2 | ||||
-rw-r--r-- | LICENSE | 21 |
2 files changed, 23 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8692073..102e97c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,10 +2,12 @@ image: node:lts # Functions that should be executed before the build script is run before_script: + - cd ./app - npm install pages: script: - npm run build + - cp -r ./build/* ../public artifacts: paths: # The folder that contains the files to be exposed at the Page URL @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2024 Zhongheng Liu + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. |