From 22137d77c970c3aebabb472f53e734dcd6ab5bd7 Mon Sep 17 00:00:00 2001 From: Alois Date: Sun, 28 Jun 2026 19:45:55 +0200 Subject: [PATCH] (fix): ci workflow --- .forgejo/workflows/ci.yml | 3 +++ .forgejo/workflows/release.yml | 8 ++++---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index f608b5c..7928f57 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -14,6 +14,9 @@ jobs: name: checks runs-on: nixos steps: + - name: Install node + run: nix profile install nixpkgs#nodejs_24 + - name: Checkout uses: https://data.forgejo.org/actions/checkout@v4 diff --git a/.forgejo/workflows/release.yml b/.forgejo/workflows/release.yml index 6c0d4ec..1676997 100644 --- a/.forgejo/workflows/release.yml +++ b/.forgejo/workflows/release.yml @@ -16,16 +16,16 @@ on: jobs: release: - runs-on: docker + runs-on: nixos steps: + - name: Install node + run: nix profile install nixpkgs#nodejs_24 + - name: Check out repo uses: https://data.forgejo.org/actions/checkout@v4 with: fetch-depth: 0 - - name: Install Packages - run: apt-get update && apt-get install -y sudo curl jq npm - - name: Install Nix uses: https://github.com/cachix/install-nix-action@v30