Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/release-on-actinia.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,14 @@ jobs:
run: |
set -euo pipefail
SPEC="${{ steps.ver.outputs.spec }}"
# --skip-validate-spec: the spec dumped from a live actinia-core has
# known validation issues (undeclared path params, stray attributes)
# that originate upstream; strict validation would abort generation.
docker run --rm -v "${PWD}:/local" "${OPENAPI_GENERATOR_IMAGE}" generate \
-g python \
-c /local/config.yaml \
-i "/local/${SPEC}" \
--skip-validate-spec \
-o /local
# The generator may write as root; normalise ownership for later steps.
sudo chown -R "$(id -u):$(id -g)" .
Expand Down