Skip to content

Commit

Permalink
Merge pull request #230 from pyiron/deploy_from_conda
Browse files Browse the repository at this point in the history
Use conda environment to deploy
  • Loading branch information
jan-janssen authored Nov 27, 2023
2 parents c177fd5 + 91b0322 commit 41cf722
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 41cf722

Please sign in to comment.