Fix default profile picture in authors list #24
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 translations | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
update-translations: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ./.github/actions/setup | |
with: | |
backend: false | |
- name: Install dependencies | |
working-directory: frontend | |
run: pnpm install | |
- name: Update translation keys | |
working-directory: frontend | |
run: | | |
pnpm translations:compare -ak ${{ secrets.TOLGEE_KEY }} | |
pnpm translations:sync -ak ${{ secrets.TOLGEE_KEY }} |