We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd760bd commit c81ffbcCopy full SHA for c81ffbc
.github/workflows/release.yml
@@ -34,10 +34,9 @@ jobs:
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
+ - name: Install dependencies (Ubuntu)
+ if: matrix.os == 'ubuntu-latest'
+ run: sudo apt-get update && sudo apt-get install -y libx11-dev
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