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
|
container: rust:latest
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Installing Node
|
name: Installing Node, Yarn, Tauri CLI
|
||||||
run: apt update && apt install -y nodejs
|
run: |
|
||||||
|
apt update && apt install -y nodejs
|
||||||
|
npm install --global yarn
|
||||||
|
cargo install tauri-cli
|
||||||
-
|
-
|
||||||
name: Checking Out Repository Code
|
name: Checking Out Repository Code
|
||||||
uses: https://code.forgejo.org/actions/checkout@v3
|
uses: https://code.forgejo.org/actions/checkout@v3
|
||||||
-
|
|
||||||
name: Installing Tauri CLI
|
|
||||||
run: cargo install tauri-cli
|
|
||||||
-
|
-
|
||||||
name: Compiling To Linux Target
|
name: Compiling To Linux Target
|
||||||
run: |
|
run: |
|
||||||
|
|
Reference in a new issue