File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed
Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 4141 with :
4242 user : __token__
4343 password : ${{ secrets.pypi_password }}
44+ build-and-publish-docker-image :
45+ name : Build and publish docker image
46+ runs-on : ubuntu-18.04
47+ steps :
48+ - name : Checkout
49+ uses : actions/checkout@v1
50+ - name : Login with docker
51+ run : docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
52+ - name : Publish to Registry for latest
53+ if : success()
54+ run : make build-push-image-latest
55+ - name : Publish to Registry for version
56+ run : make build-push-image-version
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ def build_js() -> None:
3737with open (requirements_path ) as requirements_file :
3838 requirements = requirements_file .readlines ()
3939
40- __version__ = '3.5.0 '
40+ __version__ = '3.5.1 '
4141
4242oicd = ['flaskoidc==0.1.1' ]
4343pyarrrow = ['pyarrow==3.0.0' ]
You can’t perform that action at this time.
0 commit comments