mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 07:16:16 +01:00
18 lines
318 B
YAML
18 lines
318 B
YAML
|
name: Publish
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
tags:
|
||
|
- "**"
|
||
|
|
||
|
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 }}
|