From 38e13d6403a8f0acbd9a78980ea041e96416db16 Mon Sep 17 00:00:00 2001 From: Jack Greiner Date: Mon, 13 May 2024 22:40:44 -0400 Subject: [PATCH] Fully use Github Actions image for building the website. --- .github/workflows/website_check.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/website_check.yml b/.github/workflows/website_check.yml index 2257507..5b2d989 100644 --- a/.github/workflows/website_check.yml +++ b/.github/workflows/website_check.yml @@ -9,17 +9,20 @@ jobs: permissions: contents: read runs-on: ubuntu-latest - container: - image: "ghcr.io/naev/naev-docs:latest" steps: - name: Checkout Naev Website Repository uses: actions/checkout@v3 + - name: Setup APT Packages + uses: awalsh128/cache-apt-pkgs-action@latest + with: + packages: graphicsmagick optipng tidy + version: website_1.0 + - name: Setup Ruby uses: ruby/setup-ruby@v1 with: - self-hosted: false bundler-cache: true - name: Build and Check Website