Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/release-make-condalock.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Install conda-lock with Micromamba
uses: mamba-org/setup-micromamba@v2
uses: mamba-org/setup-micromamba@v3

@atravitz atravitz Jul 1, 2026

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

addresses node20 deprecation

with:
environment-name: conda-lock
create-args: >-
Expand Down Expand Up @@ -48,7 +48,7 @@ jobs:

- name: Generate lock files
run: |
conda lock --with-cuda 11.8 -f environment-to-lock.yaml --lockfile openfe-conda-lock.yml
conda-lock --with-cuda 11.8 -f environment-to-lock.yaml --lockfile openfe-conda-lock.yml

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not sure why this was breaking now, but this seems to resolve it.

cp openfe-conda-lock.yml openfe-${{ steps.latest-version.outputs.VERSION }}-conda-lock.yml

- name: Test lock file (linux)
Expand All @@ -58,7 +58,7 @@ jobs:
openfe test

- name: Upload file as artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

addresses node20 deprecation

with:
name: conda-lock-files
path: "*conda-lock.yml"
Expand All @@ -68,7 +68,7 @@ jobs:
runs-on: macos-latest
steps:
- name: Download artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

addresses node20 deprecation

with:
name: conda-lock-files

Expand Down
Loading