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 4be35e3 commit 2d2ba6bCopy full SHA for 2d2ba6b
.github/workflows/publish-crate.yml
@@ -9,11 +9,15 @@ jobs:
9
build:
10
runs-on: ubuntu-latest
11
steps:
12
- - uses: actions/checkout@v3
13
- - uses: actions-rs/toolchain@v1
14
- with:
15
- toolchain: stable
16
- override: true
17
- - uses: katyo/publish-crates@v2
18
19
- registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
+ - uses: actions/checkout@v3
+ - uses: actions-rs/toolchain@v1
+ with:
+ toolchain: stable
+ override: true
+ - name: Install system dependencies
+ run: |
+ sudo apt-get update
20
+ sudo apt-get install -y pkg-config libglib2.0-dev
21
+ - uses: katyo/publish-crates@v2
22
23
+ registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
0 commit comments