kind: pipeline type: docker name: test steps: - name: hunspell_chapters image: fastexitlane/hunspell:latest commands: - export HUNSPELL_FINDINGS=`for filename in chapter/*.md; do hunspell -l -d de_DE_frami,en_US -p ./.hunspellignore $filename; done | sort | uniq` - echo $HUNSPELL_FINDINGS - '[ -z "$HUNSPELL_FINDINGS" ] && exit 0 || exit 1' failure: ignore - name: hunspell_appendix image: fastexitlane/hunspell:latest commands: - export HUNSPELL_FINDINGS=`for filename in appendix/*.tex; do hunspell -l -d de_DE_frami,en_US -p ./.hunspellignore -t $filename; done | sort | uniq` - echo $HUNSPELL_FINDINGS - '[ -z "$HUNSPELL_FINDINGS" ] && exit 0 || exit 1' failure: ignore --- kind: pipeline type: docker name: build steps: - name: pandoc image: fastexitlane/pandoc-latex:latest commands: - ./build.sh pandoc - ci_commit_sha_short=`git rev-parse --short $CI_COMMIT_SHA` - mv out/main.pdf "$(date +"%F-%H-%M")_$DRONE_REPO_NAME.pdf" - name: upload image: plugins/s3 settings: bucket: praxisarbeit-artifacts access_key: from_secret: minio_access_key secret_key: from_secret: minio_secret_key source: ./*.pdf region: eu-dogland target: /version-${DRONE_BRANCH}-${DRONE_BUILD_NUMBER} path_style: true endpoint: https://minio.kingofdog.de - name: release image: plugins/gitea-release settings: api_key: from_secret: gitea_token base_url: https://git.kingofdog.de files: ./*.pdf when: event: tag