From 34ebbb1b725dde4503f955337843c0f71a16efa4 Mon Sep 17 00:00:00 2001 From: Neshura Date: Fri, 17 Nov 2023 12:21:08 +0000 Subject: [PATCH] Split Up Dependency Installs in Release Actions --- .forgejo/workflows/build+release.yml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/.forgejo/workflows/build+release.yml b/.forgejo/workflows/build+release.yml index 353d398..53e0227 100644 --- a/.forgejo/workflows/build+release.yml +++ b/.forgejo/workflows/build+release.yml @@ -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