From 21d27e9c54b3be3c29517c2abc9be21f869b8d7e Mon Sep 17 00:00:00 2001 From: Ashcon Partovi Date: Tue, 25 Jun 2024 12:38:31 -0700 Subject: [PATCH] Troubleshoot CI --- .github/actions/setup-bun/action.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/actions/setup-bun/action.yml b/.github/actions/setup-bun/action.yml index 7a47045a8e..732d784000 100644 --- a/.github/actions/setup-bun/action.yml +++ b/.github/actions/setup-bun/action.yml @@ -21,10 +21,6 @@ inputs: runs: using: composite steps: - - name: Setup upterm session - uses: lhotari/action-upterm@v1 - with: - limit-access-to-actor: true - name: Setup Bun shell: bash run: | @@ -49,5 +45,8 @@ runs: curl -LO "${{ inputs.download-url }}/${release}/${target}.zip" unzip ${target}.zip cd ${target} - ls - echo $(pwd) >> ${GITHUB_PATH} + if [[ "${os}" == "windows" ]]; then + echo $(cygpath -w $(pwd)) >> ${GITHUB_PATH} + else + echo $(pwd) >> ${GITHUB_PATH} + fi