Skip to content

Commit

Permalink
fix(release_and_deploy): fix release_and_deploy
Browse files Browse the repository at this point in the history
fix release_and_deploy
  • Loading branch information
ak-quant committed Jan 26, 2022
1 parent 051ab01 commit b41540e
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/release_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ on:
push:
branchs:
- master
tags:
- "release-v*.*.*"

jobs:
build:
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ FROM python:3.10.1-buster

MAINTAINER AKFamily <[email protected]>

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
2 changes: 1 addition & 1 deletion Dockerfile-Jupyter
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ FROM nikolaik/python-nodejs:python3.8-nodejs16
MAINTAINER AKFamily <[email protected]>

# 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
RUN pip install akshare jupyterlab scikit-learn scipy
3 changes: 2 additions & 1 deletion akshare/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```

0 comments on commit b41540e

Please sign in to comment.