File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed
Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change 77 types : [released]
88env :
99 TAG : " ${{ github.ref_type == 'tag' && github.ref_name || 'tmp' }}"
10- IMAGE_NAME : " ${{ secrets .DOCKER_ORG }}/nansat"
11- BASE_IMAGE_NAME : " ${{ secrets .DOCKER_ORG }}/nansat_base"
10+ IMAGE_NAME : " ${{ vars .DOCKER_ORG }}/nansat"
11+ BASE_IMAGE_NAME : " ${{ vars .DOCKER_ORG }}/nansat_base"
1212 BASE_IMAGE_TAG : ' 0.0.19'
1313jobs :
1414 tests_and_docker_build :
4343 - name : Login to DockerHub
4444 uses : docker/login-action@v3
4545 with :
46- username : ${{ secrets .DOCKER_USER }}
46+ username : ${{ vars .DOCKER_USER }}
4747 password : ${{ secrets.DOCKER_PASS }}
4848
4949 - name : ' Run tests'
@@ -119,8 +119,6 @@ jobs:
119119 - name : Publish
120120 uses : pypa/gh-action-pypi-publish@release/v1
121121 with :
122- # Storing the PyPI URL in the repositories' secrets makes
123- # publishing to the test PyPI from forks easy
124- repository_url : ${{ secrets.PYPI_REPOSITORY_URL }}
122+ repository_url : ${{ vars.PYPI_REPOSITORY_URL }}
125123 password : ${{ secrets.PYPI_TOKEN }}
126124...
You can’t perform that action at this time.
0 commit comments