Skip to content

CI

CI #1647

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:
- '8.1'
- '8.2'
typo3:
- ^11.5.4
- ^12.4
steps:
- uses: actions/checkout@v4
- name: Build
env:
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@v4
- 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