Bump version #89
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 POT | |
on: | |
push: | |
branches: [ master ] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
run: | |
name: Update POT | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: install xgettext | |
run: sudo apt-get install gettext; | |
- name: Update POT | |
run: sh tools/extract_template.sh; | |
- name: Commit changes | |
uses: EndBug/[email protected] | |
with: | |
message: "Update POT" | |
- name: Push changes | |
uses: actions-go/push@v1 | |