Add Yarn Install to Release Actions
Some checks failed
Run Tests on Code / run-tests (push) Successful in 7s
Build and Release Binary File / run-tests (push) Successful in 9s
Build and Release Binary File / build (push) Failing after 16s
Build and Release Binary File / upload-release (push) Has been skipped

This commit is contained in:
Neshura 2023-11-17 12:08:16 +00:00
parent f43cbb5f74
commit 9b1ed09d46

View file

@ -21,14 +21,14 @@ jobs:
container: rust:latest
steps:
-
name: Installing Node
run: apt update && apt install -y nodejs
name: Installing Node, Yarn, Tauri CLI
run: |
apt update && apt install -y nodejs
npm install --global yarn
cargo install tauri-cli
-
name: Checking Out Repository Code
uses: https://code.forgejo.org/actions/checkout@v3
-
name: Installing Tauri CLI
run: cargo install tauri-cli
-
name: Compiling To Linux Target
run: |