Skip to content

Commit e6fde05

Browse files
author
Maciej Olko
committed
Build also 3.8 translation
1 parent 2b887cc commit e6fde05

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/update-and-build.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,24 +35,27 @@ jobs:
3535
github_token: ${{ secrets.GITHUB_TOKEN }}
3636
build-translation:
3737
runs-on: ubuntu-latest
38+
strategy:
39+
matrix:
40+
version: [3.8, 3.9]
3841
needs: ['update-translation']
3942
steps:
4043
- uses: actions/setup-python@master
4144
- uses: actions/checkout@master
4245
with:
4346
repository: python/cpython
44-
ref: 3.9
47+
ref: ${{ matrix.version }}
4548
- run: make venv
4649
working-directory: ./Doc
4750
- uses: actions/checkout@master
4851
with:
49-
ref: 3.9
52+
ref: ${{ matrix.version }}
5053
path: Doc/locales/pl/LC_MESSAGES
5154
- run: git pull
5255
working-directory: ./Doc/locales/pl/LC_MESSAGES
5356
- run: make -e SPHINXOPTS="-D language='pl' -D gettext_compact=0 -W --keep-going" html
5457
working-directory: ./Doc
5558
- uses: actions/upload-artifact@master
5659
with:
57-
name: build
60+
name: build-${{ matrix.version }}
5861
path: Doc/build/html

0 commit comments

Comments
 (0)