Skip to content

Commit

Permalink
Merge pull request #5 from a645162/dev
Browse files Browse the repository at this point in the history
fix(CI/CD): Support version Tags
  • Loading branch information
a645162 authored Sep 11, 2024
2 parents a8b077e + 6aa71cd commit 917b825
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,14 @@ jobs:
run: |
python --version
pip --version
- name: Set up Program Version
run: |
python version.py
echo "PROGRAM_VERSION=${python version.py}" >> $GITHUB_ENV
PROGRAM_VERSION=$(python version.py)
echo "PROGRAM_VERSION=${PROGRAM_VERSION}" >> $GITHUB_ENV
- name: Echo Program Version
run: echo "'${{ env.PROGRAM_VERSION }}' will be used as the version of the program."

- name: Build .jar file
run: python build_with_docker.py
Expand Down

0 comments on commit 917b825

Please sign in to comment.