An open API service indexing awesome lists of open source software.

https://github.com/mittwald/typo3-publish-ter-action

Github Action to publish a TYPO3 extension into the TYPO3 extension repository (TER)
https://github.com/mittwald/typo3-publish-ter-action

publishing typo3

Last synced: 3 days ago
JSON representation

Github Action to publish a TYPO3 extension into the TYPO3 extension repository (TER)

Awesome Lists containing this project

README

        

# TER publish action

This repository contains a Github Action to publish a TYPO3 extension into the TYPO3 extension repository (TER).

## Inputs


ter-username


Required This is your typo3.org username.

ter-password


Required Your typo3.org password. Yes, an API key would be much nicer -- unfortunately, username+password authentication is the only mechanism supported by TER.

extension-key


Required Your extension key.

extension-dir

The directory from which your extension should be published. Defaults to "."

## Example usage

```yaml
uses: mittwald/[email protected]
with:
ter-username: ${{ secrets.ter_username }}
ter-password: ${{ secrets.ter_password }}
extension-key: example_extension
```