diff --git a/.forgejo/workflows/build+release.yml b/.forgejo/workflows/build+release.yml index 679aed9..2c769f7 100644 --- a/.forgejo/workflows/build+release.yml +++ b/.forgejo/workflows/build+release.yml @@ -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: |