We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d762b27 commit 8404237Copy full SHA for 8404237
1 file changed
.gitlab-ci.yml
@@ -8,13 +8,12 @@ stages:
8
Generate release notes on commit:
9
stage: build
10
image: fedora:42
11
- allow_failure: true
+ allow_failure: true # change to non release-notes files ignored
12
script:
13
- dnf install -q -y multimarkdown git-core libxslt
14
- mkdir -p output
15
- |-
16
files=`git diff-tree --no-commit-id --name-only -r $CI_COMMIT_SHA | grep release-notes-`
17
- echo Changed files: $files
18
for file in $files; do echo Processing file $file; multimarkdown $file | xsltproc release-notes.xsl - > output/$file.shtml; done
19
artifacts:
20
paths:
@@ -39,7 +38,6 @@ Generate release notes:
39
38
# Publish the release notes to the website
40
Publish release notes:
41
stage: publish
42
- when: manual
43
tags:
44
- www.dcache.org
45
0 commit comments