This repository has been archived on 2024-07-10. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/.gitlab-ci.yml

31 lines
1.2 KiB
YAML

stages: # List of stages for jobs, and their order of execution
- prepare
- build
- deploy
remove-old-services: # This job runs in the build stage, which runs first.
stage: prepare
script:
- podman stop little-lines
- podman rm little-lines
apply-version-tag:
stage: prepare
script:
- echo $CI_PROJECT_DIR
- echo ${CI_PROJECT_DIR}
- sed -i "s/DATE/$(date -I)/g" ${CI_PROJECT_DIR}/src/views/Setting.vue
- sed -i "s/VERSION/$(git log -1 --oneline | awk '{print $1}')/g" ${CI_PROJECT_DIR}/src/views/Setting.vue
build-job: # This job runs in the test stage.
stage: build # It only starts when the job in the build stage completes successfully.
script:
- podman build -t little-lines:$(git log -1 --oneline | awk '{print $1}') .
deploy-job: # This job runs in the deploy stage.
stage: deploy # It only runs when *both* jobs in the test stage complete successfully.
script:
- podman run --name little-lines -p 8081:80 -d little-lines:$(git log -1 --oneline | awk '{print $1}')
- podman generate systemd little-lines > ~/.config/systemd/user/little-lines.service
- systemctl --user daemon-reload
- systemctl --user enable little-lines