forked from 3liz/lizmap-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (29 loc) · 823 Bytes
/
transifex.yml
File metadata and controls
34 lines (29 loc) · 823 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Transifex 🗺
on:
push:
branches:
- master
paths:
- '**.py'
- '**.ui'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
if: github.repository_owner == '3liz'
steps:
- uses: actions/checkout@v6
- name: Setup Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
architecture: x64
cache: "pip"
cache-dependency-path: "requirements/packaging.txt"
- name: Install Packaging CI
run: |
sudo apt-get -qq update
sudo apt-get -qq install qttools5-dev-tools pyqt5-dev-tools
pip install --quiet -r requirements/packaging.txt
- name: Push to Transifex
run: qt-transifex -vv push --transifex-token "${{ secrets.TRANSIFEX_TOKEN }}"