Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Neutree committed Jul 10, 2024
1 parent c6f79bb commit 60b8366
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/release_maixcam.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ jobs:
cd $MAIXCDK_PATH
maixcdk_rev=`git rev-parse HEAD`
maixcdk_version_name="maixcdk_version_${maixcdk_rev}.txt"
maixcdk_version_path="${MAIXCDK_PATH}/${maixcdk_version_name}"
echo "MaixPy ${maixpy_version} use MaixCDK commit ${maixcdk_rev}" > $maixcdk_version_name
maixcdk_version_path=`realpath "${MAIXCDK_PATH}/${maixcdk_version_name}"`
echo "maixcdk_version_path=$maixcdk_version_path" >> $GITHUB_OUTPUT
echo "maixcdk_version_name=$maixcdk_version_name" >> $GITHUB_OUTPUT
cd $maixpy_path
Expand Down
2 changes: 1 addition & 1 deletion maix/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@

version_major = 4
version_minor = 4
version_patch = 8
version_patch = 10

__version__ = "{}.{}.{}".format(version_major, version_minor, version_patch)

0 comments on commit 60b8366

Please sign in to comment.