Split Up Dependency Installs in Release Actions
All checks were successful
Run Tests on Code / run-tests (push) Successful in 7s
All checks were successful
Run Tests on Code / run-tests (push) Successful in 7s
This commit is contained in:
parent
647343fc12
commit
34ebbb1b72
1 changed files with 8 additions and 5 deletions
|
@ -21,11 +21,14 @@ jobs:
|
|||
container: rust:latest
|
||||
steps:
|
||||
-
|
||||
name: Installing Node, Yarn, Vite, Tauri CLI
|
||||
run: |
|
||||
apt update && apt install -y nodejs npm
|
||||
npm install --global yarn vite
|
||||
cargo install tauri-cli
|
||||
name: Installing Node, NPM
|
||||
run: apt update && apt install -y nodejs npm
|
||||
-
|
||||
name: Installing Yarn, Vite
|
||||
run: npm install --global yarn vite
|
||||
-
|
||||
name: Installing Tauri CLI
|
||||
run: cargo install tauri-cli
|
||||
-
|
||||
name: Checking Out Repository Code
|
||||
uses: https://code.forgejo.org/actions/checkout@v3
|
||||
|
|
Reference in a new issue