Fix build command typo #41
Workflow file for this run
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
name: 'Update output files' | |
on: | |
push: | |
branches: | |
- new-system | |
- add-rtl-fix-to-action | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
generate-po-artifacts: | |
name: Generate PO artifacts | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Archive po files as artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: translation-po | |
path: po | |
generate-output: | |
name: Generate raw output | |
needs: generate-po-artifacts | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout RimTranslate | |
uses: actions/checkout@v4 | |
with: | |
repository: 'mtimoustafa/RimTranslate' | |
- name: Download po files artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: translation-po | |
path: po | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12.3' | |
- name: Install packages | |
run: python -m pip install -r requirements.txt | |
- name: Generate output files | |
run: python RimTranslate.py -p "$(pwd)/po/" -o "$(pwd)/output/" | |
- name: Archive output files as artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: translation-output | |
path: output | |
fix-output-rtl: | |
name: Fix output RTL | |
needs: generate-output | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout rimworld-rtl-translation-tools | |
uses: actions/checkout@v4 | |
with: | |
repository: 'mtimoustafa/rimworld-rtl-translation-tools' | |
- name: Download output files artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: translation-output | |
path: raw-output | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Fix Arabic strings | |
run: ./build_arabic.sh raw-output/ fixed-output/ | |
- name: Archive fixed output files as artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: translation-output-fixed | |
path: fixed-output/ | |
push-output: | |
needs: fix-output-rtl | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Download output files artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: translation-output-fixed | |
path: Arabic | |
- name: Setup Git | |
uses: actions4git/setup-git@v1 | |
- name: Git add output files | |
run: git add Arabic/ | |
- name: Git commit output files | |
run: if [ -n "$(git diff --cached --exit-code)" ]; then git commit -m "Generate output file for changes"; fi | |
- name: Git push output files | |
run: git push |