Skip to content

Commit fbb56be

Browse files
authored
Resolve typos in the job for Clean up anaconda packages (#2331)
The PR update GitHub workflow with `Conda package` to resolve typos in `Clean up anaconda packages` job there. There was empty string passed as a name of env file for miniconda resulting to incomplete environment created.
1 parent 0490fcc commit fbb56be

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/conda-package.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -675,7 +675,7 @@ jobs:
675675
- name: Checkout DPNP repo
676676
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
677677
with:
678-
fetch-depth: 1
678+
fetch-depth: ${{ env.fetch-depth }}
679679

680680
- name: Setup miniconda
681681
id: setup_miniconda
@@ -685,8 +685,8 @@ jobs:
685685
miniforge-version: latest
686686
use-mamba: 'true'
687687
conda-remove-defaults: 'true'
688-
environment-file: ${{ env.upload-conda-pkg-env }}
689-
activate-environment: ${{ env.upload-env-name }}
688+
environment-file: ${{ env.cleanup-conda-pkg-env }}
689+
activate-environment: ${{ env.cleanup-env-name }}
690690

691691
- name: ReSetup miniconda
692692
if: steps.setup_miniconda.outcome == 'failure'

0 commit comments

Comments
 (0)