diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index e9212bd6..f27c0392 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -14,16 +14,20 @@ jobs: runs-on: ubuntu-latest environment: name: pypi - url: https://pypi.org/p/pympipool + url: https://pypi.org/p/${{ github.event.repository.name }} permissions: id-token: write steps: - uses: actions/checkout@v2 - - uses: actions/setup-python@v2 + - uses: conda-incubator/setup-miniconda@v2.2.0 with: - python-version: "3.11" - - name: Install dependencies - run: python -m pip install --user --upgrade cloudpickle pyzmq setuptools tqdm versioneer wheel + python-version: 3.11 + mamba-version: "*" + channels: conda-forge + miniforge-variant: Mambaforge + channel-priority: strict + auto-update-conda: true + environment-file: .ci_support/environment-openmpi.yml - name: Convert dependencies run: | cp .ci_support/environment-old.yml environment.yml