Skip to content
This repository has been archived by the owner on Jun 19, 2024. It is now read-only.

CI

CI #626

Workflow file for this run

name: CI
on:
push:
branches:
- master
tags:
- '*'
pull_request:
branches:
- master
schedule:
- cron: '0 7 * * *'
jobs:
build:
name: 'PHP ${{ matrix.php }}, TYPO3 ${{ matrix.typo3 }}'
runs-on: ubuntu-latest
strategy:
matrix:
php:
- 7.2
- 7.4
typo3:
- ^9.5
include:
- php: 7.2
typo3: ^8.7
composer: '2.2.14'
- php: 7.4
typo3: ^8.7
composer: '2.2.14'
steps:
- uses: actions/checkout@v2
- name: Build
env:
COMPOSER_VERSION: ${{matrix.composer}}
PHP_VERSION: ${{matrix.php}}
TYPO3_VERSION: ${{matrix.typo3}}
run: docker-compose run --rm app composer build
- name: Cleanup
if: ${{ always() }}
run: docker-compose down --volumes
release-ter:
name: TYPO3 TER release
if: startsWith(github.ref, 'refs/tags/')
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Deploy to TER
env:
TYPO3_API_TOKEN: ${{secrets.TYPO3_API_TOKEN}}
TYPO3_API_USERNAME: ${{secrets.TYPO3_API_USERNAME}}
TYPO3_API_PASSWORD: ${{secrets.TYPO3_API_PASSWORD}}
TAG: ${{github.ref_name}}
run: docker-compose run --rm app composer deploy:ter