Skip to content

Commit 902d44b

Browse files
authored
Fix missing dependencies in publish workflow
Updated package installation command to fix missing dependencies.
1 parent 0a95293 commit 902d44b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
fetch-depth: 500
1616
- uses: rust-lang/crates-io-auth-action@v1
1717
id: auth
18-
- run: sudo apt-get -y install libfontconfig1-dev # required to compile mupdf
18+
- run: sudo apt-get update --fix-missing && sudo apt-get -y install libfontconfig1-dev # required to compile mupdf
1919
- run: cargo publish -p mupdf-sys
2020
env:
2121
CARGO_REGISTRY_TOKEN: ${{ steps.auth.outputs.token }}

0 commit comments

Comments
 (0)