Skip to content

Commit

Permalink
ci: fix dependency installation
Browse files Browse the repository at this point in the history
  • Loading branch information
kxxt committed Jun 12, 2023
1 parent d092c88 commit bf3913a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
cache-on-failure: false
- name: Install native dependencies
if: runner.os == 'Linux'
run: sudo apt install libasound2-dev binutils-aarch64-linux-gnu gcc-aarch64-linux-gnu
run: sudo apt update -y && sudo apt install -y libasound2-dev binutils-aarch64-linux-gnu gcc-aarch64-linux-gnu
- name: Publish to crates.io
if: matrix.os == 'ubuntu-22.04' && matrix.target == 'x86_64-unknown-linux-gnu'
continue-on-error: true
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# aspeak Changelog

# v6.0.0-alpha.1
# v6.0.0-alpha.2

## For CLI users

Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "aspeak"
version = "6.0.0-alpha.1"
version = "6.0.0-alpha.2"
edition = "2021"
authors = ["kxxt <[email protected]>"]
description = "A simple text-to-speech client for Azure TTS API."
Expand Down

0 comments on commit bf3913a

Please sign in to comment.