diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index ed35e59..53ce121 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -30,7 +30,7 @@ jobs: - name: Upload to PyPI.org run: twine upload -u __token__ -p ${{ secrets.PYPI_TOKEN }} dist/* - name: Give upload time before downloading - run: sleep 234s + run: sleep 500s test-pypi: needs: [get-version, pypi] runs-on: ubuntu-20.04 @@ -74,11 +74,10 @@ jobs: - name: Upload to Anaconda.org run: | PATH="/usr/share/miniconda/bin/:$PATH" - anaconda login --username mrbuche --password ${{ secrets.ANACONDA_PASSWORD }} + export ANACONDA_API_TOKEN=${{ secrets.ANACONDA_TOKEN }} anaconda upload --force /usr/share/miniconda/conda-bld/noarch/ufjc*.tar.bz2 - anaconda logout - name: Give upload time before downloading - run: sleep 234s + run: sleep 500s test-anaconda: needs: [get-version, anaconda] runs-on: ubuntu-20.04 @@ -114,7 +113,7 @@ jobs: mrbuche/ufjc:latest mrbuche/ufjc:${{ needs.get-version.outputs.VERSION }} - name: Give upload time before downloading - run: sleep 234s + run: sleep 500s test-docker: needs: docker runs-on: ubuntu-20.04