Generaptor icon indicating copy to clipboard operation
Generaptor copied to clipboard

Order in envs

Open ForNeVeR opened this issue 1 month ago • 0 comments

        let testEnv =
            [
                "DOTNET_NOLOGO", "1"
                "DOTNET_CLI_TELEMETRY_OPTOUT", "1"
                "NUGET_PACKAGES", "${{ github.workspace }}/.github/nuget-packages"
                "PACKAGE_VERSION_BASE", "1.8.21"
            ] |> Seq.map(fun (k, v) -> setEnv k v)

This leads to

    env:
      DOTNET_CLI_TELEMETRY_OPTOUT: 1
      DOTNET_NOLOGO: 1
      NUGET_PACKAGES: ${{ github.workspace }}/.github/nuget-packages
      PACKAGE_VERSION_BASE: 1.8.21

Order should be preserved.

ForNeVeR avatar May 18 '24 16:05 ForNeVeR