Skip to content

Commit

Permalink
Fix relative paths in build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
p-goulart committed Dec 5, 2023
1 parent c8fd5c5 commit 2bbced9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,10 @@ jobs:
- name: Set dictionary version
run: echo "PT_DICT_VERSION=$(git describe --work-tree=${{ env.PT_DICT_HOME }} --tags --abrev=0 | sed 's/^v//g')" >> $GITHUB_ENV
- name: Build POS tagging dictionary
run: bash ./pos_tagger_scripts/build-lt.sh
run: |
cd ${{ env.PT_DICT_HOME }} && bash ./pos_tagger_scripts/build-lt.sh && cd -
- name: Build spelling dictionaries
run: poetry run -C ${{ env.PT_DICT_HOME }} python ./pt_dict/scripts/build_spelling_dicts.py
run: poetry run -C ${{ env.PT_DICT_HOME }} python ./${{ env.PT_DICT_HOME}/pt_dict/scripts/build_spelling_dicts.py
- name: Checkout LT
uses: actions/checkout@v3
with:
Expand Down

0 comments on commit 2bbced9

Please sign in to comment.