mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 05:56:11 +01:00
19f3820d0d
Tags named like `test-tag` should not trigger a TER releasen, but only valid version numbers in the format major.minor.bugfix. Fixes #327
17 lines
337 B
YAML
17 lines
337 B
YAML
name: Publish
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v[0-9]+.[0-9]+.[0-9]+'
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: "Checkout"
|
|
uses: actions/checkout@v2
|
|
- name: "Publish new version to TER"
|
|
uses: tomasnorre/typo3-upload-ter@v2
|
|
with:
|
|
api-token: ${{ secrets.TYPO3_API_TOKEN }}
|