Skip to content

Commit

Permalink
Install libopusenc in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
d-k-bo committed Jul 22, 2023
1 parent 99e4838 commit dc06fd3
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ jobs:
with:
submodules: true
- uses: dtolnay/rust-toolchain@stable
- name: Install libopusenc
run: sudo apt install libopusenc-dev
- run: cargo clippy --all-features
- run: cargo clippy --no-default-features

Expand All @@ -32,4 +34,6 @@ jobs:
with:
submodules: true
- uses: dtolnay/rust-toolchain@stable
- name: Install libopusenc
run: sudo apt install libopusenc-dev
- run: cargo test
20 changes: 20 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Release

permissions:
contents: write

on:
push:
tags:
- v[0-9]+.*

jobs:
create-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: taiki-e/create-gh-release-action@v1
with:
branch: main
draft: true
token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit dc06fd3

Please sign in to comment.