Skip to content
Snippets Groups Projects
Verified Commit fe023b72 authored by Martin Weise's avatar Martin Weise
Browse files

Bump version

parent d60365bb
No related branches found
No related tags found
3 merge requests!231CI: Remove build for log-service,!228Better error message handling in the frontend,!223Release of version 1.4.0
This commit is part of merge request !223. Comments created here will be created in the context of that merge request.
...@@ -480,7 +480,7 @@ build-api-latest: ...@@ -480,7 +480,7 @@ build-api-latest:
- ./swagger/latest - ./swagger/latest
expire_in: 1 days expire_in: 1 days
build-api-version: build-api-1.3:
stage: build stage: build
image: docker.io/alpine:3.18 image: docker.io/alpine:3.18
only: only:
...@@ -489,7 +489,7 @@ build-api-version: ...@@ -489,7 +489,7 @@ build-api-version:
- master - master
script: script:
- apk add bash git - apk add bash git
- git fetch && git checkout master - git fetch && git checkout release-v1.3
- bash .docs/.swagger/generate.sh - bash .docs/.swagger/generate.sh
- mkdir -p ./swagger/1.3 - mkdir -p ./swagger/1.3
- cp -r ./site/* ./swagger/1.3/ - cp -r ./site/* ./swagger/1.3/
...@@ -502,6 +502,28 @@ build-api-version: ...@@ -502,6 +502,28 @@ build-api-version:
- ./swagger/1.3 - ./swagger/1.3
expire_in: 1 days expire_in: 1 days
build-api-1.4:
stage: build
image: docker.io/alpine:3.18
only:
refs:
- dev
- master
script:
- apk add bash git
- git fetch && git checkout master
- bash .docs/.swagger/generate.sh
- mkdir -p ./swagger/1.4
- cp -r ./site/* ./swagger/1.4/
cache:
paths:
- ./swagger/1.4
artifacts:
when: always
paths:
- ./swagger/1.4
expire_in: 1 days
docs-registry: docs-registry:
stage: docs stage: docs
image: docker.io/python:3.9-slim image: docker.io/python:3.9-slim
...@@ -526,7 +548,8 @@ docs-latest: ...@@ -526,7 +548,8 @@ docs-latest:
image: docker.io/python:3.9-slim image: docker.io/python:3.9-slim
needs: needs:
- build-api-latest - build-api-latest
- build-api-version - build-api-1.3
- build-api-1.4
only: only:
refs: refs:
- dev - dev
...@@ -548,19 +571,19 @@ docs-latest: ...@@ -548,19 +571,19 @@ docs-latest:
- ./final - ./final
expire_in: 1 days expire_in: 1 days
docs-version: docs-1.3:
stage: docs stage: docs
image: docker.io/python:3.9-slim image: docker.io/python:3.9-slim
needs: needs:
- build-api-latest - build-api-latest
- build-api-version - build-api-1.3
only: only:
refs: refs:
- dev - dev
- master - master
script: script:
- apt-get update && apt-get install -y git make - apt-get update && apt-get install -y git make
- git fetch && git checkout master - git fetch && git checkout release-v1.3
- pip install -r ./.docs/requirements.txt - pip install -r ./.docs/requirements.txt
- mkdir -p ./final - mkdir -p ./final
- mkdocs build && cp -r ./site ./final/1.3 - mkdocs build && cp -r ./site ./final/1.3
...@@ -574,12 +597,40 @@ docs-version: ...@@ -574,12 +597,40 @@ docs-version:
- ./final - ./final
expire_in: 1 days expire_in: 1 days
docs-1.4:
stage: docs
image: docker.io/python:3.9-slim
needs:
- build-api-latest
- build-api-1.3
- build-api-1.4
only:
refs:
- dev
- master
script:
- apt-get update && apt-get install -y git make
- git fetch && git checkout master
- pip install -r ./.docs/requirements.txt
- mkdir -p ./final
- mkdocs build && cp -r ./site ./final/1.4
- cp -r ./swagger/1.4 ./final/1.4/swagger
cache:
paths:
- ./final
artifacts:
when: always
paths:
- ./final
expire_in: 1 days
release-docs: release-docs:
stage: release stage: release
image: docker.io/finalgene/openssh:9.1 image: docker.io/finalgene/openssh:9.1
needs: needs:
- docs-latest - docs-latest
- docs-version - docs-1.3
- docs-1.4
only: only:
refs: refs:
- dev - dev
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment