Skip to content

Commit 9991256

Browse files
committed
Fix artifacts
1 parent 9c4e899 commit 9991256

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/update-lockfile.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Upload lockfile
4040
uses: actions/upload-artifact@v4
4141
with:
42-
name: conda-lock-${{ matrix.python-version }}.yaml
42+
name: lockfile-${{ matrix.python-version }}
4343
path: conda/conda-lock-${{ matrix.python-version }}.yaml
4444

4545
open-pr:
@@ -48,13 +48,13 @@ jobs:
4848
steps:
4949
- name: Checkout repo
5050
uses: actions/checkout@v4
51-
- name: Delete old lockfiles
52-
run: |
53-
rm -f conda/conda-lock-*.yaml
5451
- name: Download all lockfiles
5552
uses: actions/download-artifact@v4
5653
with:
57-
path: conda
54+
path: /tmp/conda
55+
- name: Replace existing lockfiles with downloaded
56+
run: |
57+
mv /tmp/conda/lockfile-*/* conda/
5858
- name: Print diff
5959
run: |
6060
pwd

0 commit comments

Comments
 (0)