Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/localazy/upload

Upload localizable files to the Localazy translation management platform.
https://github.com/localazy/upload

automated automated-localization automatedlocalization automation github-action github-actions github-actions-docker localization localization-management localization-tool localizations localizationservice translation translation-management translations

Last synced: 9 days ago
JSON representation

Upload localizable files to the Localazy translation management platform.

Awesome Lists containing this project

README

        

# Localazy Upload docker action

Upload localizable files to the Localazy translation management platform. For detailed documentation of Localazy CLI, please [visit the documentation](https://localazy.com/docs/cli/the-basics).

## Inputs

### `workdir`

**Optional** Defines the working directory where to invoke Localazy CLI command.

### `config_file`

**Optional** The filename of the configuration file. Default: localazy.json

### `key_file`

**Optional** The filename of the key file.

### `read_key`

**Optional** The read key for the project on Localazy. Can be defined in the config or key file but we recommend to use Github Secrets.

### `write_key`

**Optional** The write key for the project on Localazy. Can be defined in the config or key file but we recommend to use Github Secrets.

### `force`

**Optional** Whether to force the upload even if the validation fails; use only if you are sure that your configuration is correct.

### `app_version`

**Optional** Override/provide the app version.

### `groups`

**Optional** Define groups to be uploaded separated with a space. The default group is always uploaded. If no groups are provided, only the default one is uploaded.

## Example usage

```yaml
uses: localazy/upload@v1
with:
read_key: ${{ secrets.LOCALAZY_READ_KEY }}
write_key: ${{ secrets.LOCALAZY_WRITE_KEY }}
```