Use windows compatible path append

This commit is contained in:
Dan Buch 2022-09-11 16:37:56 -04:00
parent ff1138c969
commit da7efeb63b
Signed by: meatballhat
GPG Key ID: A12F782281063434

View File

@ -23,7 +23,7 @@ jobs:
with: with:
go-version: ${{ matrix.go }} go-version: ${{ matrix.go }}
- name: Set PATH - name: Set PATH
run: echo "${GITHUB_WORKSPACE}/.local/bin" | tee -a "${GITHUB_PATH}" >/dev/null run: echo "${GITHUB_WORKSPACE}/.local/bin" >>"${GITHUB_PATH}"
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- if: matrix.go == '1.19.x' && matrix.os == 'ubuntu-latest' - if: matrix.go == '1.19.x' && matrix.os == 'ubuntu-latest'
run: make ensure-goimports run: make ensure-goimports
@ -54,7 +54,7 @@ jobs:
with: with:
node-version: '16' node-version: '16'
- name: Set PATH - name: Set PATH
run: echo "${GITHUB_WORKSPACE}/.local/bin" | tee -a "${GITHUB_PATH}" >/dev/null run: echo "${GITHUB_WORKSPACE}/.local/bin" >>"${GITHUB_PATH}"
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- run: make ensure-gfmrun - run: make ensure-gfmrun
- run: make gfmrun - run: make gfmrun