fix bug causing newer midcore release aliases to not be preferred on … #24
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Windows Script Destination Tests | |
| on: | |
| pull_request: | |
| jobs: | |
| setup-lando-windows-dest-test: | |
| runs-on: windows-2022 | |
| env: | |
| LANDO_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| dest: | |
| - $env:APPDATA\Lando\bin | |
| - $env:USERPROFILE\My Lando\bin | |
| - C:\tools | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install Lando at ${{ matrix.dest }} | |
| shell: powershell | |
| run: | | |
| .\setup-lando.ps1 -Dest "${{ matrix.dest }}" | |
| $LANDO_EXE = "${{ matrix.dest }}\lando.exe" | |
| & $LANDO_EXE version --all |