From 28529158e5081b17ef3da937cd13fba8c553aee1 Mon Sep 17 00:00:00 2001 From: csxkdv Date: Tue, 6 Jan 2026 17:39:49 -0300 Subject: [PATCH] Added "apt-get update" to Install Ruby workflow --- .gitea/workflows/compile.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/compile.yml b/.gitea/workflows/compile.yml index c3da2ce..d30a977 100644 --- a/.gitea/workflows/compile.yml +++ b/.gitea/workflows/compile.yml @@ -10,7 +10,9 @@ jobs: uses: actions/checkout@v3 - name: Install Ruby - run: apt-get install -y ruby-full + run: | + apt-get update + apt-get install -y ruby-full - name: Install dependencies run: bundle install