update docker build script to pick version
Some checks failed
Build and Upload Python Package / build (push) Has been cancelled
Build Docker Image / build (push) Successful in 24s

This commit is contained in:
ksyasuda 2024-08-17 18:38:37 -07:00
parent 94f2b9599b
commit bc4f40e1d6

View File

@ -15,7 +15,7 @@ jobs:
- name: Read current version
id: get_version
run: echo "current_version=$(cat VERSION)" >> $GITHUB_ENV
run: echo "current_version=$(cat version.txt)" >> $GITHUB_ENV
- name: Increment version
id: increment_version
@ -25,7 +25,6 @@ jobs:
version_parts[2]=$((version_parts[2] + 1))
new_version="${version_parts[0]}.${version_parts[1]}.${version_parts[2]}"
echo "new_version=$new_version" >> $GITHUB_ENV
echo $new_version > VERSION
- name: Log in to Gitea Docker Registry
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login https://gitea.suda.codes -u ${{ secrets.DOCKER_USERNAME }} --password-stdin