Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix bug with local POM version #45

Merged
merged 3 commits into from
Jul 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
matrix:
python-version: ["3.11"]
env:
LT_BRANCH: "pt/dict/v1.1.0"
LT_BRANCH: "pt/dict/v1.2.0"
steps:
- name: Set paths
run: |
Expand Down Expand Up @@ -217,6 +217,12 @@ jobs:
- name: Set dictionary version
run: echo "PT_DICT_VERSION=$(git describe --tags --abbrev=0 | sed 's/^v//g')" >> $GITHUB_ENV

- name: Add dictionary version to package pom
run: |
poetry run python "dict_tools/scripts/update_pom.py" \
--new-version "${{ env.PT_DICT_VERSION }}" \
--package-name "portuguese-pos-dict"

- name: Set up JDK 11 for x64
uses: actions/setup-java@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion dict_tools
Submodule dict_tools updated 1 files
+21 −14 scripts/update_pom.py
Loading