diff --git a/.gitea/workflows/setup-db.yml b/.gitea/workflows/setup-db.yml index 0e9b1f6..edc8106 100644 --- a/.gitea/workflows/setup-db.yml +++ b/.gitea/workflows/setup-db.yml @@ -6,14 +6,17 @@ on: jobs: create_db_and_user: - # Use a standard Linux runner environment runs-on: ubuntu-latest - # NOTE: The job will run inside a Docker image with the psql client. container: - image: postgres:15-alpine - + image: node:20-alpine + steps: + - name: Install PostgreSQL Client + run: | + # Install psql client on Alpine Linux + apk add --no-cache postgresql-client + - name: Checkout Repository uses: actions/checkout@v4