-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix github actions and minor demo changes
- Loading branch information
1 parent
a7d4580
commit 9d2fbd5
Showing
5 changed files
with
60 additions
and
53 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
|
||
env: | ||
add_binaries_to_github_release: true | ||
use_git_lfs: true | ||
|
||
|
||
jobs: | ||
|
||
# Build for Linux | ||
release-linux: | ||
runs-on: ubuntu-latest | ||
environment: publish | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
lfs: ${{ env.use_git_lfs }} | ||
- uses: dtolnay/rust-toolchain@stable | ||
with: | ||
targets: x86_64-unknown-linux-gnu | ||
- name: install dependencies | ||
run: | | ||
sudo apt-get update; sudo apt-get install pkg-config libx11-dev libasound2-dev libudev-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev | ||
- name: Test | ||
run: | | ||
cargo test --release --target x86_64-unknown-linux-gnu | ||
- name: Get Dependency | ||
run: | | ||
cargo install cargo-release | ||
- name: Login | ||
run: | | ||
cargo login ${{ secrets.CARGO_TOKEN }} | ||
- name: Publish | ||
run: | | ||
cargo release publish \ | ||
--workspace \ | ||
--execute \ | ||
--all-features \ |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ members=[ | |
] | ||
|
||
[workspace.package] | ||
version = "0.0.0-dev2" | ||
version = "0.0.0-dev3" | ||
edition = "2021" | ||
authors = ["James Bell <[email protected]>"] | ||
license = "MIT" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters