Fix nightly pipeline

This commit is contained in:
cytopia
2020-09-18 10:45:28 +02:00
parent 332d03010c
commit 8f2a9524fe
2 changed files with 9 additions and 4 deletions

View File

@@ -81,8 +81,7 @@ jobs:
- '8.0' - '8.0'
refs: refs:
- 'master' - 'master'
- '0.111' - '0.113'
- '0.112'
steps: steps:
# ------------------------------------------------------------ # ------------------------------------------------------------
@@ -100,10 +99,10 @@ jobs:
# Set git branch or git tag as slug # Set git branch or git tag as slug
if [ -n "$( git tag --points-at HEAD )" ]; then if [ -n "$( git tag --points-at HEAD )" ]; then
GIT_TYPE=TAG GIT_TYPE=TAG
GIT SLUG="$( git tag --points-at HEAD )" GIT_SLUG="$( git tag --points-at HEAD )"
elif [ "$( git rev-parse --abbrev-ref HEAD )" != "HEAD" ]; then elif [ "$( git rev-parse --abbrev-ref HEAD )" != "HEAD" ]; then
GIT_TYPE=BRANCH GIT_TYPE=BRANCH
GIT SLUG="$( git rev-parse --abbrev-ref HEAD )" GIT_SLUG="$( git rev-parse --abbrev-ref HEAD )"
else else
false false
fi fi

View File

@@ -4,6 +4,12 @@
## Unreleased ## Unreleased
## Release 0.113
#### Fixed
- Fixes nightly build pipeline
## Release 0.112 ## Release 0.112
#### Fixed #### Fixed