From 4c06e3fbbd221124248d52042ecdcd15783b4f54 Mon Sep 17 00:00:00 2001 From: csxkdv Date: Tue, 6 Jan 2026 17:41:49 -0300 Subject: [PATCH] Added "gem install bundler" because it does not come with Ruby by default --- .gitea/workflows/compile.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/compile.yml b/.gitea/workflows/compile.yml index d30a977..6740e5a 100644 --- a/.gitea/workflows/compile.yml +++ b/.gitea/workflows/compile.yml @@ -9,10 +9,11 @@ jobs: - name: Checkout repository uses: actions/checkout@v3 - - name: Install Ruby + - name: Install Ruby and Bundler run: | apt-get update apt-get install -y ruby-full + gem install bundler - name: Install dependencies run: bundle install