Skip to content

Commit 3e416cd

Browse files
authored
chore: update docker publisher new action (#956)
Signed-off-by: feng-tao <[email protected]>
1 parent 2ca517c commit 3e416cd

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

.github/workflows/publish_release.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,16 @@ jobs:
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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def build_js() -> None:
3737
with open(requirements_path) as requirements_file:
3838
requirements = requirements_file.readlines()
3939

40-
__version__ = '3.5.0'
40+
__version__ = '3.5.1'
4141

4242
oicd = ['flaskoidc==0.1.1']
4343
pyarrrow = ['pyarrow==3.0.0']

0 commit comments

Comments
 (0)