Skip to content

Commit

Permalink
New tag (1.0.52)
Browse files Browse the repository at this point in the history
  • Loading branch information
scrgiorgio committed May 21, 2024
1 parent 0c35088 commit ea02a55
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build-openvisuspy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ on: [push]
env:
PYPI_USERNAME: ${{ secrets.PYPI_USERNAME }}
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }}


jobs:
Expand All @@ -17,7 +15,14 @@ jobs:
matrix:
python-version: [ '3.9', '3.10']
steps:

- uses: actions/checkout@v2

- uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_TOKEN }}

- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "openvisuspy"
version = "1.0.51"
version = "1.0.52"
authors = [{ name="OpenVisus developers"},]
description = "openvisuspy"
readme = "README.md"
Expand Down
1 change: 0 additions & 1 deletion scripts/ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ if [[ "${GIT_TAG}" != "" ]] ; then

# publish to DockerHub
docker build --build-arg="OPENVISUS_VERSION=${OPENVISUS_VERSION}" --build-arg="GIT_TAG=${GIT_TAG}" --tag nsdf/openvisuspy:${GIT_TAG} ./
echo ${DOCKER_TOKEN} | docker login -u=${DOCKER_USERNAME} --password-stdin
docker push nsdf/openvisuspy:${GIT_TAG}
docker push nsdf/openvisuspy:latest

Expand Down

0 comments on commit ea02a55

Please sign in to comment.