ci: fix docker, pypi

This commit is contained in:
zweien 2021-07-15 13:17:16 +08:00
parent 96a935d466
commit 2cbe08faac
2 changed files with 9 additions and 1 deletions

View File

@ -28,6 +28,14 @@ jobs:
-
name: Print event_name
run: echo "$GITHUB_EVENT_NAME, ${{ github.event_name }}, ${{ github.event.release.tag_name }}"
-
name: Publish master to Dockerhub
uses: docker/build-push-action@v2
with:
push: true
tags: ${{ secrets.DOCKERHUB_USERNAME }}/idrlnet:latest
file: Dockerfile
-
name: Get release version

View File

@ -32,7 +32,7 @@ jobs:
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload --repository-url dist/*
twine upload dist/*
- name: Install from PyPI
run: |