Skip to content

Commit

Permalink
Try executing in a different shell
Browse files Browse the repository at this point in the history
  • Loading branch information
pcolby committed Nov 16, 2023
1 parent aeace5e commit 680ec35
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -365,12 +365,14 @@ jobs:
copy /v /b src\cli\dokit.exe /b portable
cd portable
windeployqt --compiler-runtime --release --verbose 2 dokit.exe ${{ matrix.dll }}
dokit.exe --version > tmp.txt
type tmp.txt
:: dokit.exe --version > tmp.txt
:: type tmp.txt
working-directory: ${{ runner.temp }}
- name: Setup artifacts
shell: bash
run: echo "dokitVersion=$(cat "$RUNNER_TEMP/version.txt")" >> $GITHUB_ENV
run: |
"$RUNNER_TEMP/dokit.exe" --version
echo "dokitVersion=$(cat "$RUNNER_TEMP/version.txt")" >> $GITHUB_ENV
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 680ec35

Please sign in to comment.