Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

Commit

Permalink
feat: ocr & mute on rejoin (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
oSumAtrIX committed Aug 27, 2022
1 parent 8840a65 commit afb7e79
Show file tree
Hide file tree
Showing 18 changed files with 746 additions and 128 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Install dependencies
run: sudo apt install libleptonica-dev libtesseract-dev libssl-dev

- name: Setup Rust toolchain
id: rust-toolchain
uses: actions-rs/toolchain@v1
Expand All @@ -28,12 +31,6 @@ jobs:
override: true
components: clippy

- name: Setup Node.js
if: github.event_name != 'pull_request'
uses: actions/setup-node@v2
with:
node-version: "lts/*"

- name: Cache
uses: actions/cache@v3
id: cache
Expand All @@ -47,8 +44,7 @@ jobs:
uses: actions-rs/cargo@v1
with:
command: build
args: --release --target=x86_64-unknown-linux-musl
use-cross: true
args: --release

- name: cargo clippy
uses: actions-rs/cargo@v1
Expand All @@ -60,7 +56,7 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: revanced-discord-bot
path: target/x86_64-unknown-linux-musl/release/revanced-discord-bot
path: target/release/revanced-discord-bot

- name: Setup semantic-release
if: github.event_name != 'pull_request'
Expand Down
Loading

0 comments on commit afb7e79

Please sign in to comment.