config button should be shown regardless of login #263
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: | |
- development | |
jobs: | |
update-translations: | |
runs-on: ubuntu-latest | |
container: | |
image: node:lts | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
node-version: 20 | |
cache: 'yarn' | |
- name: Install | |
shell: bash | |
run: yarn | |
- name: Update Translations | |
run: yarn update-translations | |
env: | |
TRANSIFEX_SECRET: ${{ secrets.TRANSIFEX_SECRET }} | |
TRANSIFEX_TOKEN: ${{ secrets.TRANSIFEX_TOKEN }} |