mirror of
https://github.com/saccas/mjml-typo3.git
synced 2024-11-15 03:36:11 +01:00
39 lines
967 B
YAML
39 lines
967 B
YAML
|
dist: trusty
|
||
|
sudo: false
|
||
|
language: php
|
||
|
|
||
|
cache:
|
||
|
directories:
|
||
|
- $HOME/.composer/cache
|
||
|
|
||
|
install:
|
||
|
- composer require typo3/cms="$TYPO3_VERSION"
|
||
|
|
||
|
jobs:
|
||
|
include:
|
||
|
- php: 7.1
|
||
|
env: TYPO3_VERSION=^8.7
|
||
|
- php: 7.2
|
||
|
env: TYPO3_VERSION=^8.7
|
||
|
|
||
|
- stage: deploy
|
||
|
if: tag IS present
|
||
|
php: 7.1
|
||
|
before_install: skip
|
||
|
install: skip
|
||
|
before_script: skip
|
||
|
script: |
|
||
|
echo -e "Preparing upload of release ${TRAVIS_TAG} to TER\n"
|
||
|
|
||
|
TAG_ANNOTATION="$(git tag -n -l $TRAVIS_TAG)"
|
||
|
TAG_MESSAGE="${TAG_ANNOTATION#* }"
|
||
|
|
||
|
git reset --hard
|
||
|
git clean -xfd
|
||
|
|
||
|
export PATH=$PATH:$(composer global config bin-dir --absolute 2>/dev/null)
|
||
|
composer global require helhum/ter-client dev-master
|
||
|
|
||
|
echo "Uploading release ${TRAVIS_TAG} to TER"
|
||
|
ter-client upload $(composer config extra.typo3/cms.extension-key) . -u "$TYPO3_ORG_USERNAME" -p "$TYPO3_ORG_PASSWORD" -m "$TAG_MESSAGE"
|