Skip to content

Commit 2d2ba6b

Browse files
committed
a
1 parent 4be35e3 commit 2d2ba6b

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

.github/workflows/publish-crate.yml

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,15 @@ jobs:
99
build:
1010
runs-on: ubuntu-latest
1111
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-
with:
19-
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}
12+
- uses: actions/checkout@v3
13+
- uses: actions-rs/toolchain@v1
14+
with:
15+
toolchain: stable
16+
override: true
17+
- name: Install system dependencies
18+
run: |
19+
sudo apt-get update
20+
sudo apt-get install -y pkg-config libglib2.0-dev
21+
- uses: katyo/publish-crates@v2
22+
with:
23+
registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }}

0 commit comments

Comments
 (0)