From f2b7fa167196fe41bc5352fc5c999fb91d6e1eec Mon Sep 17 00:00:00 2001 From: Neucrack Date: Thu, 20 Jun 2024 15:30:36 +0800 Subject: [PATCH] ci release test --- .github/workflows/release_maixcam.yml | 4 ++-- maix/version.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release_maixcam.yml b/.github/workflows/release_maixcam.yml index fcb04402..443d1319 100644 --- a/.github/workflows/release_maixcam.yml +++ b/.github/workflows/release_maixcam.yml @@ -92,8 +92,8 @@ jobs: - name: Upload MaixPy Doc to release assets uses: svenstaro/upload-release-action@v2 with: - file: ${{ steps.build_doc.outputs.release_path }} - asset_name: ${{ steps.build_doc.outputs.release_name }} + file: ${{ steps.build_doc.outputs.release_doc_path }} + asset_name: ${{ steps.build_doc.outputs.release_doc_name }} tag: ${{ github.ref }} repo_token: ${{ secrets.GITHUB_TOKEN }} diff --git a/maix/version.py b/maix/version.py index 7f30e552..a7980d36 100644 --- a/maix/version.py +++ b/maix/version.py @@ -3,6 +3,6 @@ version_major = 4 version_minor = 3 -version_patch = 6 +version_patch = 7 __version__ = "{}.{}.{}".format(version_major, version_minor, version_patch)