Skip to content

Commit

Permalink
ci: change CLI parameter order
Browse files Browse the repository at this point in the history
  • Loading branch information
deliaBlue committed Jan 19, 2025
1 parent 7361a80 commit 7338e29
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
auto-activate-base: false

- name: Update mirflowz env with dev packages
run: mamba env update -p $MAMBA_ROOT_PREFIX -n mirflowz -f environment.dev.yml
run: mamba env update -n mirflowz -p $MAMBA_ROOT_PREFIX -f environment.dev.yml

- name: display environment info
run: |
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
auto-activate-base: false

- name: update mirflowz env with dev packages
run: mamba env update -p $MAMBA_ROOT_PREFIX -n mirflowz -f environment.dev.yml
run: mamba env update -n mirflowz -p $MAMBA_ROOT_PREFIX -f environment.dev.yml

- name: display environment info
run: |
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
auto-activate-base: false

- name: update mirflowz env with root packages
run: mamba env update -p $MAMBA_ROOT_PREFIX -n mirflowz -f environment.root.yml
run: mamba env update -n mirflowz -p $MAMBA_ROOT_PREFIX -f environment.root.yml

- name: display environment info
run: |
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
auto-activate-base: false

- name: update mirflowz env with dev packages
run: mamba env update -p $MAMBA_ROOT_PREFIX -n mirflowz -f environment.dev.yml
run: mamba env update -n mirflowz -p $MAMBA_ROOT_PREFIX -f environment.dev.yml

- name: display environment info
run: |
Expand Down

0 comments on commit 7338e29

Please sign in to comment.