We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 321ae7a commit 5d8252bCopy full SHA for 5d8252b
.github/workflows/compendium.yml
@@ -15,8 +15,9 @@ jobs:
15
steps:
16
- name: Get current branch name
17
shell: bash
18
- run: echo "CURRENT_BRANCH=$(echo ${GITHUB_REF#refs/heads/} | tr / -)" >> $GITHUB_ENV
19
- - name: Check out ${{ github.repository }} repository
+ run: |
+ echo "CURRENT_BRANCH=$(echo ${GITHUB_REF#refs/heads/} | tr / -)" >> $GITHUB_ENV
20
+ - name: Check out ${{ github.repository }}
21
uses: actions/checkout@v2
22
with:
23
ref: ${{ env.CURRENT_BRANCH }}
@@ -26,7 +27,7 @@ jobs:
26
27
python-version: '3.9'
28
- name: Install dependencies
29
run: |
- sudo apt update && sudo apt install gettext
30
+ sudo apt update -y && sudo apt install gettext -y
31
pip3 install --upgrade pip
32
pip3 install translate-toolkit
33
- name: Generate compendium from PO files
0 commit comments