Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/localazy/download
Download localizable files from the Localazy translation management platform.
https://github.com/localazy/download
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: 10 days ago
JSON representation
Download localizable files from the Localazy translation management platform.
- Host: GitHub
- URL: https://github.com/localazy/download
- Owner: localazy
- Created: 2020-11-07T22:48:55.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-09-10T09:42:56.000Z (about 3 years ago)
- Last Synced: 2024-03-14T17:32:23.626Z (8 months ago)
- Topics: automated, automated-localization, automatedlocalization, automation, github-action, github-actions, github-actions-docker, localization, localization-management, localization-tool, localizations, localizationservice, translation, translation-management, translations
- Language: Shell
- Homepage: https://localazy.com
- Size: 2.93 KB
- Stars: 15
- Watchers: 4
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Localazy Download docker action
Download localizable files from 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.
### `release_tag`
**Optional** Specifies release tag that should be downloaded. When omitted, the _latest_ tag is downloaded. The _latest_ tag is defaultly created when you publish for the first time and updated with each publish.
### `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/download@v1
with:
read_key: ${{ secrets.LOCALAZY_READ_KEY }}
write_key: ${{ secrets.LOCALAZY_WRITE_KEY }}
```