You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
1.2 KiB
35 lines
1.2 KiB
name: Update POT file |
|
|
|
on: |
|
push: |
|
branches: |
|
- dev |
|
paths: |
|
- '**.php' |
|
- '**.js' |
|
|
|
jobs: |
|
update-pot: |
|
runs-on: ubuntu-latest |
|
steps: |
|
- uses: actions/checkout@v2 |
|
- name: Setup PHP with tools |
|
uses: shivammathur/setup-php@v2 |
|
with: |
|
php-version: '7.3' |
|
tools: composer, wp-cli |
|
- name: Install dependencies |
|
run: | |
|
wp package install wp-cli/i18n-command:2.2.8 |
|
cd /home/runner/.wp-cli/packages/ |
|
composer config repositories.wp-cli '{"type": "composer","url": "https://wp-cli.org/package-index/","canonical": false}' |
|
cd ./ |
|
wp package install pressbooks/pb-cli:2.1.0 |
|
composer require jenssegers/blade:1.1.0 |
|
- name: Update POT file |
|
run: wp pb make-pot . languages/pressbooks-aldine.pot --require=vendor/autoload.php --domain=pressbooks-aldine --slug=pressbooks-aldine --package-name="Aldine" --headers="{\"Report-Msgid-Bugs-To\":\"https://github.com/pressbooks/pressbooks-aldine/issues\"}" |
|
- name: Commit updated POT file |
|
uses: stefanzweifel/git-auto-commit-action@v4.1.1 |
|
with: |
|
commit_message: 'chore(l10n): update languages/pressbooks-aldine.pot' |
|
file_pattern: '*.pot'
|
|
|