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

feat: ocr & mute on rejoin #20

Merged
merged 7 commits into from
Aug 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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