Skip to content

Commit

Permalink
Prepare for merge
Browse files Browse the repository at this point in the history
  • Loading branch information
ad-daniel committed Jan 25, 2022
1 parent c800605 commit c32b50d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/publisher.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Publisher

# trigger on file change
# Trigger on new github release, a tag with format vX.Y.Z is expected (used to tag the docker)
on:
release:
types: [published]
Expand All @@ -18,7 +18,7 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
ref: feature-automatic-publish # to remove before merge
submodules: true
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
Expand All @@ -35,13 +35,13 @@ jobs:
TWINE_USERNAME: ${{ secrets.TEST_PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.TEST_PYPI_PASSWORD }}
run : |
twine upload --repository testpypi dist/*
twine upload dist/*
publish-docker-cpu:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
ref: feature-automatic-publish # to remove before merge
submodules: true
- name: Build Docker Image
run: docker build --tag opendr-toolkit:cpu_$OPENDR_VERSION --file Dockerfile .
- name: Login to Docker Hub
Expand All @@ -58,7 +58,7 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
ref: feature-automatic-publish # to remove before merge
submodules: true
- name: Build Docker Image
run: docker build --tag opendr-toolkit:cuda_$OPENDR_VERSION --file Dockerfile-cuda .
- name: Login to Docker Hub
Expand Down
2 changes: 1 addition & 1 deletion src/opendr/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
# See the License for the specific language governing permissions and
# limitations under the License.

__version__ = "1.0.2"
__version__ = "1.0.0"

0 comments on commit c32b50d

Please sign in to comment.