Skip to content

Commit

Permalink
feat: wip traslation action
Browse files Browse the repository at this point in the history
  • Loading branch information
jansenk committed Sep 8, 2023
1 parent 807f0bd commit 3621262
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/regenerate-translations.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Regenerate translations
on:
workflow_dispatch:
inputs:
pull_request:
description: 'PR number to add translations update to'
required: true
type: string

jobs:
regenerate-translations:
runs-on: ubuntu-20.04
python-version: ['3.8']
node-version: [16]
steps:
- name: Install pip
run: pip install -r requirements/pip.txt

- name: Set env variable
run: export AWS_CONFIG_FILE=/dev/null

- name: Install Dependencies
run:
pip install -r requirements/ci.txt
pip install -r requirements/test.txt
pip install -r requirements/quality.txt
pip install -r requirements/test-acceptance.txt

- name: Install GNU gettext
run: sudo apt-get install gettext

- name: Setup Node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}

0 comments on commit 3621262

Please sign in to comment.