diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml deleted file mode 100644 index 507340e0bae05e95873296ec145eef1ef5ac2b75..0000000000000000000000000000000000000000 --- a/.github/workflows/publish.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: Publish docs via GitHub Pages -on: - workflow_dispatch: - push: - branches: - - master - -jobs: - build: - name: Deploy docs - runs-on: ubuntu-22.04 - steps: - - name: Checkout master - uses: actions/checkout@v3 - - - name: Deploy docs - uses: mhausenblas/mkdocs-deploy-gh-pages@1.26 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - CUSTOM_DOMAIN: docs.nmaas.eu - EXTRA_PACKAGES: libc-dev libxslt-dev \ No newline at end of file diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 9e94e837956c786bd6e62b78d3f99cc130bfe86c..0000000000000000000000000000000000000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,24 +0,0 @@ -image: python:3.9-bookworm - -before_script: - - pip install -r requirements.txt - -test: - stage: test - script: - - mkdocs build --strict --verbose --site-dir test - artifacts: - paths: - - test - rules: - - if: $CI_COMMIT_REF_NAME != $CI_DEFAULT_BRANCH - -pages: - stage: deploy - script: - - mkdocs build --strict --verbose --site-dir public - artifacts: - paths: - - public - rules: - - if: $CI_COMMIT_REF_NAME == $CI_DEFAULT_BRANCH