We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9eec7fc commit cd760bdCopy full SHA for cd760bd
.github/workflows/release.yml
@@ -32,6 +32,12 @@ jobs:
32
runs-on: ${{ matrix.os }}
33
steps:
34
- uses: actions/checkout@v4
35
+ # on unbuntu-latest, libx11-dev is required for building.
36
+ - name: Install dependencies
37
+ run: |
38
+ if [ ${{ matrix.os }} = 'ubuntu-latest' ]; then
39
+ sudo apt-get update && sudo apt-get install -y libx11-dev
40
+ fi
41
- uses: taiki-e/upload-rust-binary-action@v1
42
with:
43
# (required) Comma-separated list of binary names (non-extension portion of filename) to build and upload.
0 commit comments