Skip to content

Commit

Permalink
trying the workaround suggested here
Browse files Browse the repository at this point in the history
  • Loading branch information
damies13 committed Feb 25, 2024
1 parent ff7e9b5 commit 3ca7dd0
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/Regression_Tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,13 @@ jobs:
dir dist
- name: Install Agent from dist UM
# if: ${{ matrix.platform != 'windows-latest' }}
if: ${{ matrix.platform != 'windows-latest' }}
run: pip install rfswarm_agent-*.whl
working-directory: ./dist


- name: Install Agent from dist W
if: ${{ matrix.platform == 'windows-latest' }}
shell: cmd
run: pip install rfswarm_agent-*.whl
run: for %%f in (dist/rfswarm_agent-*.whl) do pip install %%f
working-directory: ./dist
# run: |
# $files = GetChildItem –Filter rfswarm_agent-*.whl –Recurse
Expand Down

0 comments on commit 3ca7dd0

Please sign in to comment.