-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
akynazh
committed
Feb 2, 2024
1 parent
95c461a
commit 027247b
Showing
2 changed files
with
61 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Translate README | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- master | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 12.x | ||
# ISO Langusge Codes: https://cloud.google.com/translate/docs/languages | ||
- name: Adding README - English | ||
uses: dephraiim/translate-readme@main | ||
with: | ||
LANG: en | ||
- name: Adding README - Chinese Traditional | ||
uses: dephraiim/translate-readme@main | ||
with: | ||
LANG: zh-TW | ||
- name: Adding README - Hindi | ||
uses: dephraiim/translate-readme@main | ||
with: | ||
LANG: hi | ||
- name: Adding README - Arabic | ||
uses: dephraiim/translate-readme@main | ||
with: | ||
LANG: ar | ||
- name: Adding README - French | ||
uses: dephraiim/translate-readme@main | ||
with: | ||
LANG: fr |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters