Merge pull request #175 from devilbox/release-0.113

Fix nightly pipeline
This commit is contained in:
cytopia
2020-09-18 10:46:03 +02:00
committed by GitHub
2 changed files with 9 additions and 4 deletions

View File

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

View File

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