Skip to content
Snippets Groups Projects
Commit a7c01d3a authored by Roman Dvořák's avatar Roman Dvořák
Browse files

Merge branch 'testing-pipeline' into 'main'

Fixing zipper

See merge request inject/inject-docs!11
parents 7085de5e 0fda6cc0
No related branches found
No related tags found
No related merge requests found
...@@ -4,22 +4,61 @@ variables: ...@@ -4,22 +4,61 @@ variables:
GIT_SUBMODULE_STRATEGY: normal GIT_SUBMODULE_STRATEGY: normal
stages: stages:
- setup
- commit
- build
- deploy - deploy
pages: default:
stage: deploy tags:
- inject
setup:
stage: setup
before_script: before_script:
- apt-get update - apt-get update
- apt-get install -y zip - apt-get install -y zip
script:
- ./utilities.sh # Running the script to setup directories and copy files
- mkdir -p files-from-repos
- zip -r ./files-from-repos/deployment-files.zip ./frontend/docker/nginx-deployment/
artifacts:
paths:
- docs/tech
- files-from-repos
- files-from-repos/deployment-files.zip
commit_zip:
stage: commit
script:
- git config --global user.email "ci@gitlab.com"
- git config --global user.name "CI Bot"
- git add files-from-repos/deployment-files.zip
- git commit -m "Add authomatically deployment-files.zip"
- git push https://oauth2:${GITLAB_TOKEN}@gitlab.fi.muni.cz/inject/inject-docs.git HEAD:main -o ci.skip
dependencies:
- setup
only:
- main
build:
stage: build
script: script:
- pip install poetry==1.8.2 - pip install poetry==1.8.2
- poetry install - poetry install
- poetry run ./utilities.sh
- poetry run mkdocs build --strict --verbose --site-dir public - poetry run mkdocs build --strict --verbose --site-dir public
artifacts: artifacts:
paths: paths:
- public - public
dependencies:
- setup
pages:
stage: deploy
script:
- echo "Deploying pages"
artifacts:
paths:
- public
only: only:
- main - main
tags:
- inject
No preview for this file type
#!/usr/bin/env bash #!/usr/bin/env bash
# Initialize and update git submodules
git submodule init git submodule init
git submodule update --remote git submodule update --remote
# Check the status of the git submodules
git submodule status
# Create necessary directories
mkdir -p docs/tech mkdir -p docs/tech
mkdir -p files-from-repos mkdir -p files-from-repos
# Copy files to the respective directories
cp ./backend/definitions/README.md ./docs/tech/architecture/definitions.md cp ./backend/definitions/README.md ./docs/tech/architecture/definitions.md
cp ./backend/CHANGELOG.md ./docs/tech/architecture/CHANGELOG.md cp ./backend/CHANGELOG.md ./docs/tech/architecture/CHANGELOG.md
cp ./backend/openapi.yml ./docs/tech/api/openapi.yml cp ./backend/openapi.yml ./docs/tech/api/openapi.yml
cp ./frontend/docker/nginx-deployment/README.md ./files-from-repos/nginx-README.md cp ./frontend/docker/nginx-deployment/README.md ./files-from-repos/nginx-README.md
zip -r ./files-from-repos/deployment-files.zip ./frontend/docker/nginx-deployment/
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment