Skip to content

translized/upload

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Translized upload docker action

Upload localizable files to the Translized translation management platform. For detailed documentation of Translized CLI, please visit the documentation.

Prerequisites

Configuration file .translized.yml should exist in a root directory. More details about file and how to create it can be found here.

Example usage

name: upload_translized
on:
  push:
    branches:
      - 'main'
    paths:
      - 'languages/**'

jobs:
  upload:
    runs-on: ubuntu-latest
    steps:
      - name: Copy repository
        uses: actions/checkout@v4

      - name: Translized upload
        uses: translized/upload@v1.0

This job will upload your localization files to Translized whenever some of the localization files, which are in languages folder, change.