Add Yarn Install to Release Actions
Some checks failed
Some checks failed
This commit is contained in:
parent
f43cbb5f74
commit
9b1ed09d46
1 changed files with 5 additions and 5 deletions
|
@ -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: |
|
||||
|
|
Reference in a new issue