From 6c0c15d3fabbe7764260aaaa2978671195d8a223 Mon Sep 17 00:00:00 2001 From: csxkdv Date: Tue, 6 Jan 2026 18:19:05 -0300 Subject: [PATCH] Added postgres user and db creation to workflow --- .gitea/workflows/compile.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitea/workflows/compile.yml b/.gitea/workflows/compile.yml index 0404368..c6f31aa 100644 --- a/.gitea/workflows/compile.yml +++ b/.gitea/workflows/compile.yml @@ -28,6 +28,11 @@ jobs: apt-get update apt-get install -y ruby-full libsodium-dev libpq-dev gem install bundler + + - name: Create PostgreSQL database + run: | + -u postgres createuser -s postgres + createdb fgbot_db - name: Install dependencies run: bundle install