Skip to content
Snippets Groups Projects
Verified Commit 5095a2b8 authored by TheJoeCoder's avatar TheJoeCoder
Browse files

Start work on python script

parent 51c1634e
No related branches found
No related tags found
No related merge requests found
# This file is a template, and might need editing before it works on your project.
# Full project: https://gitlab.com/pages/plain-html
image: busybox
image: "python:3"
pages:
stage: deploy
script:
- echo "The site will be deployed to $CI_PAGES_URL"
- python3 -m pip install -r requirements.txt
- python3 build_site.py
artifacts:
paths:
- public
......
import shutil
shutil.copyfile("templates/index.html", "public/index.html")
\ No newline at end of file
Jinja2~=3.1.4
\ No newline at end of file
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment