Skip to content

Commit

Permalink
Fix failing GitHub actions release workflow
Browse files Browse the repository at this point in the history
Add environment variable setup step to failing Windows release workflow.
  • Loading branch information
Dominitio authored Apr 7, 2021
1 parent 2f2eede commit 40503ab
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,10 @@ jobs:
bin: qldb
runs-on: ${{ matrix.os }}
steps:
- name: Env Variable Setup
if: matrix.os == 'windows-latest'
run: |
echo "LIBCLANG_PATH=C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Tools\Llvm\x64\bin" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
- name: Install stable toolchain
uses: actions-rs/toolchain@v1
with:
Expand Down Expand Up @@ -108,4 +112,4 @@ jobs:
body_path: TAG-COMMENT.txt

env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 40503ab

Please sign in to comment.