Skip to content

Test appending to path #381

Test appending to path

Test appending to path #381

Workflow file for this run

name: Build & Test
on: [push, workflow_dispatch]
jobs:
build:
runs-on: windows-2022
timeout-minutes: 20
steps:
- name: Append to path
run: |
$RTLPath = cygpath -w ${{ github.workspace }}/BinaryCache/Developer/Library/Developer/Platforms/Windows.platform/Developer/SDKs/Windows.sdk/usr/bin
Add-Content ${env:GITHUB_PATH} "${RTLPath}"
- name: Print path
run: Write-Output ${env:Path}