Move up description template stage with other build stages

This commit is contained in:
flow.gunso
2020-03-14 10:21:46 +01:00
parent ed41ec6415
commit a30097bdde

View File

@@ -23,6 +23,16 @@ build:
paths: paths:
- "$CI_PROJECT_NAME.tar" - "$CI_PROJECT_NAME.tar"
build:description_template:
image: python:3.8-alpine
stage: build
script: sh -e .utilities/templates/templater.sh
only:
- tags
artifacts:
paths:
- "*.description"
test: test:
stage: test stage: test
script: /bin/bash -e .utilities/test.sh script: /bin/bash -e .utilities/test.sh
@@ -47,16 +57,6 @@ publish:
# only: # only:
# - master # - master
description_templater:
image: python:3.8-alpine
stage: build
script: sh -e .utilities/templates/templater.sh
only:
- tags
artifacts:
paths:
- "*.description"
bot:package_update_notification: bot:package_update_notification:
stage: report stage: report
script: bash -e .utilities/package_update_notifier.sh script: bash -e .utilities/package_update_notifier.sh