#2 修复环境变量 #3
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: Compile po into mo | |
on: | |
push: | |
branches: | |
- dev_locale | |
jobs: | |
job1: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ["3.11"] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install dependencies | |
run: pip install polib==1.2.0 | |
- name: Show dir | |
run: pwd | |
- name: Add src directory to PYTHONPATH | |
run: | | |
echo "export PYTHONPATH=$PYTHONPATH:$(pwd)/src" >> $GITHUB_ENV | |
- name: Compile PO files | |
run: | | |
python src/one_dragon/devtools/compile_po.py | |
- name: Commit changes | |
run: | | |
if ! git diff --quiet; then | |
git config user.name github-actions | |
git config user.email [email protected] | |
git add data/locales/**/*.mo | |
git commit -m "#2 自动编译mo文件提交 $(date +%Y-%m-%d)" | |
git push | |
else | |
echo "No file modifications" | |
fi |