Skip to content

Commit 2624c83

Browse files
authored
Merge pull request #13 from OpenVoiceOS/release-0.0.6a6
Release 0.0.6a6
2 parents 01541e6 + f1d6eda commit 2624c83

File tree

67 files changed

+290
-47
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+290
-47
lines changed

.github/workflows/publish_stable.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- name: Setup Python
2727
uses: actions/setup-python@v1
2828
with:
29-
python-version: 3.8
29+
python-version: "3.10"
3030
- name: Install Build Tools
3131
run: |
3232
python -m pip install build wheel

.github/workflows/release_workflow.yml

Lines changed: 29 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,35 @@ on:
44
pull_request:
55
types: [closed]
66
branches: [dev]
7+
workflow_dispatch:
78

89
jobs:
10+
11+
translations:
12+
runs-on: ubuntu-latest
13+
steps:
14+
- name: Check out repository
15+
uses: actions/checkout@v2
16+
with:
17+
ref: dev
18+
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
19+
- name: Setup Python
20+
uses: actions/setup-python@v1
21+
with:
22+
python-version: "3.11"
23+
24+
- name: Sync translations by gitlocalize-app[bot]
25+
run: |
26+
python scripts/sync_translations.py
27+
28+
- name: Commit to dev
29+
uses: stefanzweifel/git-auto-commit-action@v4
30+
with:
31+
commit_message: Update translations
32+
branch: dev
33+
934
publish_alpha:
10-
if: github.event.pull_request.merged == true
35+
needs: translations
1136
uses: TigreGotico/gh-automations/.github/workflows/publish-alpha.yml@master
1237
secrets: inherit
1338
with:
@@ -34,6 +59,7 @@ jobs:
3459
message: |
3560
new ${{ github.event.repository.name }} PR merged! https://github.com/${{ github.repository }}/pull/${{ github.event.number }}
3661
62+
3763
publish_pypi:
3864
needs: publish_alpha
3965
if: success() # Ensure this job only runs if the previous job succeeds
@@ -46,7 +72,7 @@ jobs:
4672
- name: Setup Python
4773
uses: actions/setup-python@v1
4874
with:
49-
python-version: 3.8
75+
python-version: "3.11"
5076
- name: Install Build Tools
5177
run: |
5278
python -m pip install build wheel
@@ -56,12 +82,11 @@ jobs:
5682
- name: Build Distribution Packages
5783
run: |
5884
python setup.py sdist bdist_wheel
59-
- name: Publish to Test PyPI
85+
- name: Publish to PyPI
6086
uses: pypa/gh-action-pypi-publish@master
6187
with:
6288
password: ${{secrets.PYPI_TOKEN}}
6389

64-
6590
propose_release:
6691
needs: publish_alpha
6792
if: success() # Ensure this job only runs if the previous job succeeds

.github/workflows/sync_tx.yml

Lines changed: 0 additions & 37 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 43 additions & 3 deletions
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
No he trobat aquest color
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Això és {color_name}. Els valors R. G. B. són: vermell {red_value}, verd {green_value}, blau {blue_value}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Els valors R. G. B. d'aquest color són: vermell {red_value}, verd {green_value}, blau {blue_value}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{color_name} té un valor hexadecimal de {hex_code}. En R. G. B. això és vermell {red_value}, verd {green_value}, blau {blue_value}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{color_name} té un valor hexadecimal de {hex_code}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Aquest color té un valor hexadecimal de {hex_code}

0 commit comments

Comments
 (0)