Skip to content

Commit

Permalink
Try again
Browse files Browse the repository at this point in the history
  • Loading branch information
lukel97 committed Jun 13, 2020
1 parent 0ace84b commit 32c5937
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,19 +57,19 @@ jobs:
asset_content_type: application/octet-stream

- name: Build Wrapper
if: env.build_wrapper
if: env.build_wrapper == true
run: cabal build exe:haskell-language-server-wrapper

- name: Find Wrapper Binary
if: env.build_wrapper
if: env.build_wrapper == true
id: find_wrapper_binary
shell: bash
run: |
HLS_WRAPPER=$(find dist-newstyle \( -name 'haskell-language-server-wrapper' -o -name 'haskell-language-server-wrapper.exe' \) -type f)
echo ::set-output name=hls_wrapper_binary::$HLS_WRAPPER
- name: Upload Wrapper
if: env.build_wrapper
if: env.build_wrapper == true
uses: actions/upload-release-asset@v1.0.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit 32c5937

Please sign in to comment.