Skip to content

Commit e411135

Browse files
committed
find the environment files
1 parent 67848fc commit e411135

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/refresh-lockfiles.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
steps:
2727
- uses: actions/checkout@v5
2828
- id: get_py
29-
run: echo "MATRIX=$(ls -1 requirements/py*.yml | xargs -n1 basename | sed 's/....$//' | jq -cnR '[inputs]')" >> ${GITHUB_OUTPUT}
29+
run: echo "MATRIX=$(ls -1 ci/requirements/environment-*.yml | xargs -n1 basename | sed 's/....$//' | jq -cnR '[inputs]')" >> ${GITHUB_OUTPUT}
3030

3131
gen_lockfiles:
3232
# This is a matrix job: it splits to create new lockfiles for each
@@ -47,7 +47,7 @@ jobs:
4747
conda update -n base --all
4848
- name: generate lockfile
4949
run: |
50-
pipx run conda-lock -k explicit -p linux-64 -f requirements/${{matrix.python}}.yml
50+
pipx run conda-lock -k explicit -p linux-64 -f ci/requirements/${{matrix.python}}.yml
5151
mv conda-linux-64.lock ${{matrix.python}}-linux-64.lock
5252
- name: output lockfile
5353
uses: actions/upload-artifact@v4
@@ -68,7 +68,7 @@ jobs:
6868
- name: get artifacts
6969
uses: actions/download-artifact@v5
7070
with:
71-
path: ${{ github.workspace }}/requirements/locks
71+
path: ${{ github.workspace }}/ci/requirements/locks
7272
merge-multiple: true
7373

7474
- name: "Generate token"

0 commit comments

Comments
 (0)