From 000a8be576fc4bfd03d503c2026eaf470e76ec1e Mon Sep 17 00:00:00 2001 From: Ryo Nakano Date: Sun, 31 Dec 2023 11:44:34 +0900 Subject: [PATCH] Actions: Use Ubuntu image (#12) We don't depend on any elementary modules, so using their image is meaningless here --- .github/workflows/main.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index aae0d64..78852da 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -6,12 +6,16 @@ jobs: build: runs-on: ubuntu-latest - + container: - image: elementary/docker:stable - + image: ubuntu:22.04 + steps: - uses: actions/checkout@v4 + - name: Install Dependencies + run: | + apt update + apt install -y libglib2.0-dev meson valac - name: Build env: DESTDIR: out