diff --git a/.github/workflows/release_and_deploy.yml b/.github/workflows/release_and_deploy.yml index dca05da0982..2375adf49fb 100644 --- a/.github/workflows/release_and_deploy.yml +++ b/.github/workflows/release_and_deploy.yml @@ -4,8 +4,6 @@ on: push: branchs: - master - tags: - - "release-v*.*.*" jobs: build: @@ -45,6 +43,7 @@ jobs: uses: actions/checkout@v2 - name: release uses: softprops/action-gh-release@v1 + if: startsWith(github.ref, 'refs/tags/') env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: set up python diff --git a/Dockerfile b/Dockerfile index e8b2d554908..6f7e715d1d8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,5 +2,5 @@ FROM python:3.10.1-buster MAINTAINER AKFamily -RUN pip install --no-cache-dir akshare fastapi uvicorn -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host=mirrors.aliyun.com --upgrade -RUN pip install --no-cache-dir aktools --upgrade -i https://pypi.org/simple +RUN pip install --no-cache-dir fastapi uvicorn +RUN pip install --no-cache-dir aktools akshare -i https://pypi.org/simple diff --git a/Dockerfile-Jupyter b/Dockerfile-Jupyter index d2f78eebeaf..aac6a7731ad 100644 --- a/Dockerfile-Jupyter +++ b/Dockerfile-Jupyter @@ -4,4 +4,4 @@ FROM nikolaik/python-nodejs:python3.8-nodejs16 MAINTAINER AKFamily # RUN pip install akshare jupyterlab -i http://mirrors.aliyun.com/pypi/simple/ --trusted-host=mirrors.aliyun.com --upgrade -RUN pip install akshare jupyterlab scikit-learn scipy --upgrade \ No newline at end of file +RUN pip install akshare jupyterlab scikit-learn scipy \ No newline at end of file diff --git a/akshare/__init__.py b/akshare/__init__.py index aa54cab01d6..4fb0fd58a00 100644 --- a/akshare/__init__.py +++ b/akshare/__init__.py @@ -1805,9 +1805,10 @@ 1.3.81 fix: fix release_and_deploy interface 1.3.82 fix: fix dockerfile interface 1.3.83 fix: fix dockerfile-jupyter +1.3.84 fix: fix release_and_deploy """ -__version__ = "1.3.83" +__version__ = "1.3.84" __author__ = "Albert King" import sys diff --git a/docs/changelog.md b/docs/changelog.md index 8b566701165..66ac52d2ebb 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -3023,4 +3023,6 @@ amac_manager_cancelled_info # 中国证券投资基金业协会-信息公示-诚 1.3.82 fix: fix dockerfile interface 1.3.83 fix: fix dockerfile-jupyter + +1.3.84 fix: fix release_and_deploy ``` \ No newline at end of file