Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
tomjaguarpaw committed Oct 13, 2023
1 parent aca504e commit f43fd43
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,16 @@ jobs:
- if: matrix.os == 'windows-latest'
name: Set binary path name on Windows
# https://stackoverflow.com/a/74547513/997606
run: echo "BINARY_PATH=./dist/stan.exe" | Out-File -FilePath $env:GITHUB_ENV -Append
run: echo "BINARY_PATH=./dist/stan.exe" >> $env:GITHUB_ENV

- if: matrix.os != 'windows-latest'
name: Set binary path name not on Windows
run: echo "BINARY_PATH=./dist/stan" >> "$GITHUB_ENV"

- name: TEMPORARY show binary path name
run: echo "$BINARY_PATH"
run: |
echo "$BINARY_PATH"
echo $env:BINARY_PATH
- name: Compress binary
uses: svenstaro/[email protected]
Expand Down

0 comments on commit f43fd43

Please sign in to comment.