diff options
author | John MacFarlane <jgm@berkeley.edu> | 2019-12-21 13:35:16 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2019-12-21 13:35:16 -0800 |
commit | 392c14311f5f48b0bfaa4e141c36ea2c365b90b1 (patch) | |
tree | 1641e6c0e7e06c432b08b27b3d3d5aad1cc130b9 /.github/workflows | |
parent | eca39d6cf1e97c81564c2f69881733271cfe01a6 (diff) | |
download | pandoc-392c14311f5f48b0bfaa4e141c36ea2c365b90b1.tar.gz |
linux release-candidate build: try setting LIBRARY_PATH.
For some reason ld can't find zlib in the latest build.
Maybe this will help?
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/release-candidate.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/release-candidate.yml b/.github/workflows/release-candidate.yml index 90ee9e0fa..9e33d9ccf 100644 --- a/.github/workflows/release-candidate.yml +++ b/.github/workflows/release-candidate.yml @@ -13,6 +13,7 @@ jobs: - uses: actions/checkout@v1 - name: Create linux package run: | + export LIBRARY_PATH=/lib:/usr/lib make debpkg mkdir linux-release-candidate cp linux/artifacts/*.deb linux-release-candidate/ |